The concept CellAttributeWithPoint is a refinement of the CellAttribute concept, to represent a cell attribute containing a point.
CellAttributeWithPoint::Point | |
Type of the used point.
|
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.
|
Point& | cawp.point () | Returns the point of cawp. |
Point | cawp.point () const | Returns the point of cawp, when cawp is const. |