Class

CGAL::Linear_cell_complex_min_items<d>

#include <CGAL/Linear_cell_complex_min_items.h>

Definition

The class Linear_cell_complex_min_items<d> defines the type of darts, which is a Dart_wrapper::Dart<d,LCC>, and the traits class used. In this class, 0-attributes are enabled and associated with Cell_attribute_with_point.

Is Model for the Concepts

LinearCellComplexItems

Parameters

d the dimension of the combinatorial map.

Example

The following example shows one implementation of the Linear_cell_complex_min_items<d> class.

  template <unsigned int d>
  struct Linear_cell_complex_min_items
  {
    template <class LCC>
    struct Dart_wrapper
    {
      typedef CGAL::Dart<d, LCC> Dart;

      typedef CGAL::Cell_attribute_with_point<LCC> Vertex_attrib;    
      typedef CGAL::cpp0x::tuple<Vertex_attrib> Attributes;
    };
  };

See Also

CGAL::Linear_cell_complex<d,d2,LCCTraits,CMItems,Alloc>
CGAL::Dart<d,CMap>