mirror of https://github.com/CGAL/cgal
no concepts, export->insert in a stream, capitalize
This commit is contained in:
parent
55c564558f
commit
2f9535d769
|
|
@ -59,7 +59,7 @@ some member functions.
|
|||
|
||||
\cgalExample{Polygon/Polygon.cpp}
|
||||
|
||||
\subsection SubsectionPolygonRepair_Multipolygon The multipolygon with holes class
|
||||
\subsection SubsectionPolygonRepair_Multipolygon The Multipolygon with Holes Class
|
||||
|
||||
The following example shows the creation of a multipolygon with holes and the traversal
|
||||
of the polygons in it.
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ protected:
|
|||
};
|
||||
|
||||
/*!
|
||||
exports a multipolygon with holes to the output stream `os`.
|
||||
inserts a multipolygon with holes to the output stream `os`.
|
||||
|
||||
An \ascii and a binary format exist. The format can be selected with
|
||||
the \cgal modifiers for streams, `set_ascii_mode()` and `set_binary_mode()`,
|
||||
|
|
@ -100,11 +100,11 @@ respectively. The modifier `set_pretty_mode()` can be used to allow for (a
|
|||
few) structuring comments in the output. Otherwise, the output would
|
||||
be free of comments. The default for writing is \ascii without comments.
|
||||
|
||||
The number of polygons is exported followed by the polygons. For each polygon,
|
||||
the number of points of the outer boundary is exported followed by the
|
||||
The number of polygons is written followed by the polygons. For each polygon,
|
||||
the number of points of the outer boundary is written followed by the
|
||||
points themselves in counterclockwise order. Then, the number of holes
|
||||
is exported, and for each hole, the number of points on its outer
|
||||
boundary is exported followed by the points themselves in clockwise
|
||||
is written, and for each hole, the number of points on its outer
|
||||
boundary is written followed by the points themselves in clockwise
|
||||
order.
|
||||
|
||||
\relates Multipolygon_with_holes_2
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
/// \defgroup PkgPolygonRepairRef 2D Polygon Repair Reference
|
||||
|
||||
/// \defgroup PkgPolygonRepairConcepts Concepts
|
||||
/// \ingroup PkgPolygonRepairRef
|
||||
// \defgroup PkgPolygonRepairConcepts Concepts
|
||||
// \ingroup PkgPolygonRepairRef
|
||||
|
||||
/// \defgroup PkgPolygonRepairFunctions Functions
|
||||
/// \ingroup PkgPolygonRepairRef
|
||||
|
|
|
|||
Loading…
Reference in New Issue