1st revision

This commit is contained in:
Efi Fogel 2015-10-03 17:02:07 +03:00
parent a17d477e1f
commit e70926be79
1 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
/*!
\ingroup PkgBooleanSetOperations2Concepts
\cgalConcept
A halfedge record in a <span class="textsc">Dcel</span> data structure used
by the `General_polygon_set_2` and `Polygon_set_2` class-templates
to represent the underlying internal `Arrangement_2` data structure.
\cgalRefines `ArrangementDcelHalfedge`
\sa `ArrangementDcel`
\sa `ArrangementDcelVertex`
\sa `GeneralPolygonSetDcelFace`
*/
class GeneralPolygonSetDcelHalfedge {
public:
/// \name Creation
/// @{
/*!
default constructor.
*/
Gps_dcel_halfedge();
/*!
assigns `f` with the contents of the `other` face.
*/
void assign(const Self& other);
/// @}
/// \name Access Functions
/// @{
/// @}
/// \name Modifiers
/// @{
/// @}
}; /* end GeneralPolygonSetDcelHalfedge */