Concept

CellAttributeWithPoint

Definition

The concept CellAttributeWithPoint is a refinement of the CellAttribute concept, to represent a cell attribute containing a point.

Refines

CellAttribute

Types

CellAttributeWithPoint::Point
Type of the used point.

Creation

CellAttributeWithPoint cawp;
Default constructor.


CellAttributeWithPoint cawp ( Point apoint);
Constructor initializing the point of cawp by the copy contructor Point(apoint).


CellAttributeWithPoint cawp ( Point apoint, Info info);
Constructor initializing the point of cawp by the copy contructor Point(apoint) and initializing the information of cawp by the copy contructor Info(info). Defined only if Info is different from void.

Access Member Functions

Point& cawp.point () Returns the point of cawp.

Point cawp.point () const Returns the point of cawp, when cawp is const.

Has Models

CGAL::Cell_attribute_with_point<LCC,Info_,Tag,OnMerge,OnSplit>

See Also

LinearCellComplexItems