Skip to content

Commit 2bdeff8

Browse files
committed
counter-clockwise -> counterclockwise
1 parent e2058c0 commit 2bdeff8

File tree

29 files changed

+42
-42
lines changed

29 files changed

+42
-42
lines changed

Boolean_set_operations_2/doc/Boolean_set_operations_2/Boolean_set_operations_2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ In our context, a polygon must uphold the following conditions:
116116
<OL>
117117
<LI><I>Closed Boundary</I> - the polygon's outer boundary must be a connected sequence of curves, that start and end at the same vertex.
118118
<LI><I>Simplicity</I> - the polygon must be simple.
119-
<LI><I>Orientation</I> - the polygon's outer boundary must be <I>counter-clockwise oriented</I>.
119+
<LI><I>Orientation</I> - the polygon's outer boundary must be <I>counterclockwise oriented</I>.
120120
</OL>
121121

122122
\subsection bso_ssecpolygon_with_holes_validation Conditions for Valid Polygons with Holes

Cone_spanners_2/include/CGAL/Compute_cone_boundaries_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class Compute_cone_boundaries_2<Exact_predicates_exact_constructions_kernel_with
137137
138138
The direction of the first ray can be specified by the parameter
139139
initial_direction, which allows the first ray to start at any direction.
140-
The remaining directions are calculated in counter-clockwise order.
140+
The remaining directions are calculated in counterclockwise order.
141141
142142
\param cone_number The number of cones
143143
\param initial_direction The direction of the first ray

Cone_spanners_2/include/CGAL/Construct_theta_graph_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class Construct_theta_graph_2 {
169169
/* Construct edges in one cone bounded by two directions.
170170
171171
\param cwBound The direction of the clockwise boundary of the cone.
172-
\param ccwBound The direction of the counter-clockwise boundary.
172+
\param ccwBound The direction of the counterclockwise boundary.
173173
\param g The Theta graph to be built.
174174
*/
175175
void add_edges_in_cone(const Direction_2& cwBound, const Direction_2& ccwBound, Graph_& g) {

Cone_spanners_2/include/CGAL/Construct_yao_graph_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class Construct_yao_graph_2 {
164164
/* Construct edges in one cone bounded by two directions.
165165
166166
\param cwBound The direction of the clockwise boundary of the cone.
167-
\param ccwBound The direction of the counter-clockwise boundary.
167+
\param ccwBound The direction of the counterclockwise boundary.
168168
\param g The Yao graph to be built.
169169
*/
170170
void add_edges_in_cone(const Direction_2& cwBound, const Direction_2& ccwBound, Graph_& g) {

Heat_method_3/doc/Heat_method_3/Heat_method_3.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Next, the gradient in a given triangle can be expressed as
149149

150150
\f$\nabla u = \frac{1}{2 A_f} \sum_i u_i ( N \times e_i ) \f$
151151

152-
where \f$A_f\f$ is the area of the triangle, \f$N\f$ is its outward unit normal, \f$e_i\f$ is the \f$i\f$th edge vector (oriented counter-clockwise), and \f$u_i\f$ is the value of \f$u\f$ at the opposing vertex. The integrated divergence associated with vertex \f$i\f$ can be written as
152+
where \f$A_f\f$ is the area of the triangle, \f$N\f$ is its outward unit normal, \f$e_i\f$ is the \f$i\f$th edge vector (oriented counterclockwise), and \f$u_i\f$ is the value of \f$u\f$ at the opposing vertex. The integrated divergence associated with vertex \f$i\f$ can be written as
153153

154154
\f$\nabla \cdot X = \frac{1}{2} \sum_j cot\theta_1 (e_1 \cdot X_j) + cot \theta_2 (e_2 \cdot X_j)\f$
155155

Mesh_2/include/CGAL/Mesh_2/Refine_edges_visitor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class Refine_edges_visitor : public ::CGAL::Null_mesh_visitor
9898
// set fh to the face at the right of [va,v]
9999

100100
typename Tr::Face_circulator fc = tr.incident_faces(v, fh), fcbegin(fc);
101-
// circulators are counter-clockwise, so we start at the right of
101+
// circulators are counterclockwise, so we start at the right of
102102
// [va,v]
103103
do {
104104
if( !tr.is_infinite(fc) )

Nef_2/include/CGAL/Nef_2/PM_checker.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ bool is_forward(Halfedge_const_handle e) const
9595

9696
void check_order_preserving_embedding(Vertex_const_handle v) const;
9797
/*{\Mop checks if the embedding of the targets of the edges in
98-
the adjacency list |A(v)| is counter-clockwise order-preserving with
98+
the adjacency list |A(v)| is counterclockwise order-preserving with
9999
respect to the order of the edges in |A(v)|.}*/
100100

101101
void check_order_preserving_embedding() const;
102102
/*{\Mop checks if the embedding of all vertices of |P| is
103-
counter-clockwise order-preserving with respect to the adjacency
103+
counterclockwise order-preserving with respect to the adjacency
104104
list ordering of all vertices.}*/
105105

106106
void check_forward_prefix_condition(Vertex_const_handle v) const;

Nef_S2/include/CGAL/Nef_S2/SM_checker.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ bool is_forward(Halfedge_const_handle e) const
7979

8080
void check_order_preserving_embedding(Vertex_const_handle v) const;
8181
/*{\Mop checks if the embedding of the targets of the edges in
82-
the adjacency list |A(v)| is counter-clockwise order-preserving with
82+
the adjacency list |A(v)| is counterclockwise order-preserving with
8383
respect to the order of the edges in |A(v)|.}*/
8484

8585
void check_order_preserving_embedding() const;
8686
/*{\Mop checks if the embedding of all vertices of |P| is
87-
counter-clockwise order-preserving with respect to the adjacency
87+
counterclockwise order-preserving with respect to the adjacency
8888
list ordering of all vertices.}*/
8989

9090
void check_forward_prefix_condition(Vertex_const_handle v) const;

Periodic_2_triangulation_2/doc/Periodic_2_triangulation_2/CGAL/Periodic_2_Delaunay_triangulation_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ class Periodic_2_Delaunay_triangulation_2 : public Periodic_2_triangulation_2<Tr
212212
contains `p`. It outputs in the container pointed to by
213213
`eit` the boundary of the zone in conflict with `p`.
214214
The boundary edges of the conflict zone are output in
215-
counter-clockwise order and each edge is described through its
215+
counterclockwise order and each edge is described through its
216216
incident face which is not in conflict with `p`. The function
217217
returns in a std::pair the resulting output
218218
iterators. \pre `start` is in conflict with `p` and `p` lies in the original domain `domain`.

Periodic_4_hyperbolic_triangulation_2/doc/Periodic_4_hyperbolic_triangulation_2/CGAL/Hyperbolic_octagon_translation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class Hyperbolic_octagon_translation {
124124
Comparison operator.
125125
Each translation \f$g\f$ of \f$\mathcal G\f$, when applied to the octagon \f$\mathcal D_O\f$,
126126
produces a copy of \f$\mathcal D_O\f$ labeled by the translation \f$g\f$. The copies of
127-
\f$\mathcal D_O\f$ incident to \f$\mathcal D_O\f$ are naturally ordered counter-clockwise around
127+
\f$\mathcal D_O\f$ incident to \f$\mathcal D_O\f$ are naturally ordered counterclockwise around
128128
\f$\mathcal D_O\f$. The comparison operator compares two translations based on the ordering
129129
of the copies of \f$\mathcal D_O\f$ that they produce. For more details, see Section
130130
\ref P4HT2_representation of the User manual.

Periodic_4_hyperbolic_triangulation_2/doc/Periodic_4_hyperbolic_triangulation_2/Concepts/Periodic_4HyperbolicTriangulationFaceBase_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A refinement of the concept `TriangulationFaceBase_2` that adds an interface for
1111
1212
At the base level, a face stores handles to its incident vertices and to its neighboring faces.
1313
Compare with Section \ref Section_2D_Triangulations_Software_Design of the 2D Triangulations
14-
package. The vertices and neighbors are indexed counter-clockwise 0, 1, and 2. Neighbor `i` lies
14+
package. The vertices and neighbors are indexed counterclockwise 0, 1, and 2. Neighbor `i` lies
1515
opposite to vertex `i`.
1616
1717
For periodic hyperbolic triangulations, the face base class needs to store three hyperbolic

Periodic_4_hyperbolic_triangulation_2/doc/Periodic_4_hyperbolic_triangulation_2/PackageDescription.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Each face gives access to its three incident vertices and to its three adjacent
5454
to store additionally three hyperbolic translations. When applied to the three points stored in the vertices of
5555
the face, these translations produce the canonical representative of the face in the hyperbolic plane.
5656

57-
The three vertices of a face are indexed with 0, 1, and 2 in positive (counter-clockwise) orientation. The
57+
The three vertices of a face are indexed with 0, 1, and 2 in positive (counterclockwise) orientation. The
5858
orientation of faces on the Bolza surface is defined as the orientation of their canonical representatives in
5959
the hyperbolic plane.
6060

Polygon_repair/doc/Polygon_repair/Polygon_repair.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ strict criteria:
123123
- Adjacent collinear edges touching at vertices of degree two are merged
124124
- The sequence of vertices representing a boundary starts from its
125125
lexicographically smallest vertex
126-
- Outer boundaries are oriented counter-clockwise and inner boundaries are
126+
- Outer boundaries are oriented counterclockwise and inner boundaries are
127127
oriented clockwise
128128
- The inner boundaries of a polygon with holes are stored in lexicographic
129129
order

Segment_Delaunay_graph_2/doc/Segment_Delaunay_graph_2/Concepts/SegmentDelaunayGraphDataStructure_2.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ reverses the action of the other.
2121
The join and split operations. Left to right: The vertex `v` is split
2222
into \f$ v_1\f$ and \f$ v_2\f$. The faces \f$ f\f$ and \f$ g\f$ are
2323
inserted after \f$ f_1\f$ and \f$ f_2\f$, respectively, in the
24-
counter-clockwise sense. The vertices \f$ v_1\f$, \f$ v_2\f$ and the
24+
counterclockwise sense. The vertices \f$ v_1\f$, \f$ v_2\f$ and the
2525
faces \f$ f\f$ and \f$ g\f$ are returned as a `boost::tuple` in that
2626
order. Right to left: The edge `(f,i)` is collapsed, and thus the
2727
vertices \f$ v_1\f$ and \f$ v_2\f$ are joined. The vertex `v` is
@@ -60,7 +60,7 @@ Vertex_handle join_vertices(Face_handle f, int i);
6060
/*!
6161
Splits the vertex `v` into two vertices `v1` and
6262
`v2`. The common faces `f` and `g` of `v1` and
63-
`v2` are created after (in the counter-clockwise sense) the
63+
`v2` are created after (in the counterclockwise sense) the
6464
faces `f1` and `f2`. The 4-tuple `(v1,v2,f,g)` is
6565
returned (see \cgalFigureRef{figsdgdssplitjoin}).
6666
*/

Segment_Delaunay_graph_2/doc/Segment_Delaunay_graph_2/Concepts/SegmentDelaunayGraphTraits_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ returns the sign of the distance of `q` from the Voronoi circle
206206
of `s1`, `s2`, `s3` (the Voronoi circle of three sites
207207
`s1`, `s2`, `s3` is a circle co-tangent to all three
208208
sites, that touches them in that order as we walk on its circumference
209-
in the counter-clockwise sense).
209+
in the counterclockwise sense).
210210
\pre the Voronoi circle of `s1`, `s2`, `s3` must exist.
211211
212212
Must also provide `Sign operator()(Site_2 s1, Site_2 s2, Site_2 q)`, which returns the sign of the distance of

Segment_Delaunay_graph_Linf_2/doc/Segment_Delaunay_graph_Linf_2/Concepts/SegmentDelaunayGraphLinfTraits_2.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ segment Voronoi diagram.
7878
/*!
7979
A constructor for the point \f$ v \f$ at which the three \f$ L_{\infty} \f$
8080
bisectors between the three given sites `s1`, `s2` and `s3` intersect
81-
and the regions of `s1`, `s2` and `s3` appear in the counter-clockwise order
81+
and the regions of `s1`, `s2` and `s3` appear in the counterclockwise order
8282
`s1`, `s2`, `s3` around \f$ v\f$.
8383
8484
Point \f$ v \f$ is equidistant
@@ -116,7 +116,7 @@ of `s1`, `s2`, `s3`. The \f$ L_{\infty} \f$ Voronoi square
116116
of three sites
117117
`s1`, `s2`, `s3` is an axis-parallel square which is passing through all three
118118
sites and touches them in the `s1`, `s2`, `s3`
119-
order as we walk on the square in the counter-clockwise sense.
119+
order as we walk on the square in the counterclockwise sense.
120120
The center of the square is at the intersection of the three
121121
\f$ L_{\infty} \f$ bisectors of the three sites.
122122
@@ -256,7 +256,7 @@ Since CGAL segments have also an orientation, we also orient
256256
For an <I>oriented</I> segment \f$ s \f$, we orient its
257257
\f$L_{\infty}\f$-perpendicular lines so that the lines'
258258
orientation is closest to the following orientation:
259-
the orientation of \f$ s \f$ rotated <I>counter-clockwise</I> by
259+
the orientation of \f$ s \f$ rotated <I>counterclockwise</I> by
260260
\f$ \pi/2 \f$.
261261
262262
Let `s` be a segment and `p` a point contained in its interior.

Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Polygon_offset_builder_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For any given input polygon, its offset polygons at a certain distance are compo
7070
This method returns all such contours in an unspecified order and with no parental relationship
7171
between them (that is why it is called `construct_offset_contours()` and not `construct_offset_polygons()`).
7272
73-
Those offset contours in the resulting sequence which are oriented counter-clockwise are outer contours
73+
Those offset contours in the resulting sequence which are oriented counterclockwise are outer contours
7474
and those oriented clockwise are holes. It is up to the user to match each hole to its parent in order
7575
to reconstruct the parent-hole relationship of the conceptual output. It is sufficient to test each hole
7676
against each parent as there won't be a hole inside a hole, a parent inside any other contour,

Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Straight_skeleton_2.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ of the straight skeleton HDS, such border halfedges are oriented such that their
9696
outwards the polygon. Therefore, the opposite halfedge of any border halfedge is oriented such that
9797
its left side faces inward the polygon.
9898
99-
This \cgal package requires the input polygon (with holes) to be weakly simple and oriented counter-clockwise.
99+
This \cgal package requires the input polygon (with holes) to be weakly simple and oriented counterclockwise.
100100
101101
The skeleton halfedges are oriented such that their <I>left</I> side faces inward the region they bound.
102-
That is, the vertices (both contour and skeleton) of a face are circulated in counter-clockwise order.
102+
That is, the vertices (both contour and skeleton) of a face are circulated in counterclockwise order.
103103
There is one and only one contour halfedge incident upon any face.
104104
105105
The contours of the input polygon are traced by the border halfedges of the HDS (those facing outward),
@@ -115,7 +115,7 @@ Thus, the 2 opposite halfedges of a skeleton edge link the edge to its 2 definin
115115
Starting from any border contour halfedge, circulating the structure walks through border counter
116116
halfedges and traces the vertices of the polygon's contours (in opposite order).
117117
118-
Starting from any non-border but contour halfedge, circulating the structure walks counter-clockwise
118+
Starting from any non-border but contour halfedge, circulating the structure walks counterclockwise
119119
around the face corresponding to that contour halfedge. The vertices around a face always describe
120120
a non-convex weakly simple polygon.
121121

Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Straight_skeleton_builder_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ whose <I>straight skeleton</I> is to be built.
169169
170170
Each contour must be input in turn starting with the <I>outer contour</I> and following with the holes (if any).
171171
The order of the holes is unimportant but the outer contour must be entered first.
172-
The outer contour must be oriented counter-clockwise while holes must be oriented clockwise.
172+
The outer contour must be oriented counterclockwise while holes must be oriented clockwise.
173173
174174
It is an error to enter more than one outer contour, to enter a hole which is not inside
175175
the outer contour, to enter a hole that is inside another hole, or to enter a contour which crosses

Straight_skeleton_2/doc/Straight_skeleton_2/Straight_skeleton_2.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ for each boundary that does not contain the defining contour edge of its inciden
175175
</center>
176176
\cgalFigureCaptionBegin{SLSArtificial}
177177
A polygon with four holes (black) and its straight skeleton (red).
178-
Three artificial bisectors (green) are added in a post-processing step to recover the simply-connected
178+
Three artificial bisectors (green) are added in a postprocessing step to recover the simply-connected
179179
property for the straight skeleton face (gray) of the rightmost vertical contour edge.
180180
\cgalFigureCaptionEnd
181181

@@ -454,7 +454,7 @@ To construct the straight skeleton of a polygon the user must:
454454
<li>Instantiate the straight skeleton builder.</li>
455455
<li> Enter one contour at a time, starting from the outer contour, via the method
456456
`Straight_skeleton_builder_2::enter_contour()`. The input polygon must be
457-
weakly simple and counter-clockwise oriented (see the definitions at the beginning
457+
weakly simple and counterclockwise oriented (see the definitions at the beginning
458458
of this chapter). Collinear edges are allowed. The insertion order of each hole is
459459
unimportant but the outer contour must be entered first.</li>
460460
<li>Call `Straight_skeleton_builder_2::construct_skeleton()` once <I>all</I> the contours
@@ -480,18 +480,18 @@ The resulting sequence of offset contours can contain both outer and inner conto
480480
However, this algorithm returns a sequence of contours in arbitrary order and there is no
481481
indication whatsoever of the parental relationship between inner and outer contours.
482482

483-
On the other hand, each outer contour is counter-clockwise oriented while each hole is clockwise-oriented.
483+
On the other hand, each outer contour is counterclockwise oriented while each hole is clockwise-oriented.
484484
And since offset contours do form simple polygons, it is guaranteed that no hole will be
485485
inside another hole, no outer contour will be inside any other contour, and each hole will be inside
486486
exactly 1 outer contour.
487487

488488
Parental relationships are <I>not</I> automatically reconstructed by this algorithm because
489-
this relation is not directly given by the input polygon and must be done as a post-processing
489+
this relation is not directly given by the input polygon and must be done as a postprocessing
490490
step. The function `CGAL::arrange_offset_polygons_2()` can be used to do that efficiently.
491491

492492
A user can reconstruct the parental relationships as a post processing operation by testing
493493
each inner contour (which is identified by being clockwise) against each outer contour (identified
494-
as being counter-clockwise) for insideness.
494+
as being counterclockwise) for insideness.
495495

496496
This algorithm requires exact predicates but not exact constructions.
497497
Therefore, the `Exact_predicates_inexact_constructions_kernel` should be used.

Stream_support/doc/Stream_support/File_formats/Supported_file_formats.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ which offers combinatorial repairing while reading bad inputs.
106106
\section IOStreamOBJ Wavefront Advanced Visualizer Object Format (OBJ)
107107

108108
The `OBJ` file format, using the file extension `.obj`, is a simple \ascii data format that represents 3D geometry.
109-
Vertices are stored in a counter-clockwise order by default, making explicit declaration of face normals unnecessary.
109+
Vertices are stored in a counterclockwise order by default, making explicit declaration of face normals unnecessary.
110110

111111
A precise specification of the format is available <a href="https://www.martinreddy.net/gfx/3d/OBJ.spec">here</a>.
112112

TDS_2/doc/TDS_2/CGAL/Triangulation_data_structure_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Vertex_handle join_vertices(Edges_circulator ec);
134134
/*!
135135
splits the vertex `v` into two vertices `v1` and `v2`.
136136
137-
The common faces `f` and `g` of `v1` and `v2` are created after (in the counter-clockwise sense) the
137+
The common faces `f` and `g` of `v1` and `v2` are created after (in the counterclockwise sense) the
138138
faces `f1` and `f2`. The 4-tuple `(v1,v2,f,g)` is returned (see Fig. \ref figtdssplitjoin).
139139
140140
\pre `dimension()` must be equal to `2`, `f1` and `f2` must be different from `Face_handle()` and `v` must be a vertex of both `f1` and `f2`.

Triangulation_2/doc/Triangulation_2/CGAL/Constrained_Delaunay_triangulation_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ outputs the boundary edges of the conflict zone of point `p` into an output iter
305305
306306
This functions outputs in the container pointed to by `eit`,
307307
the boundary of the zone in conflict with `p`. The boundary edges
308-
of the conflict zone are output in counter-clockwise order
308+
of the conflict zone are output in counterclockwise order
309309
and each edge is described through the incident face
310310
which is not in conflict with `p`.
311311
The function returns the resulting output iterator.

Triangulation_2/doc/Triangulation_2/CGAL/Delaunay_triangulation_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ i. e., the faces whose circumcircle contains `p`.
221221
It outputs in the container pointed to by `eit` the
222222
the boundary of the zone in conflict with `p`.
223223
The boundary edges
224-
of the conflict zone are output in counter-clockwise order
224+
of the conflict zone are output in counterclockwise order
225225
and each edge is described through its incident face
226226
which is not in conflict with `p`.
227227
The function returns in a `std::pair` the resulting output iterators.

Triangulation_2/doc/Triangulation_2/CGAL/Regular_triangulation_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ have negative power wrt. `p`. It outputs in the container
295295
pointed to by `eit` the boundary of the zone in conflict
296296
with `p`. It inserts the vertices that would be hidden by `p`
297297
into the container pointed to by `vit`. The boundary edges of
298-
the conflict zone are output in counter-clockwise order and each edge
298+
the conflict zone are output in counterclockwise order and each edge
299299
is described through its incident face which is not in conflict with
300300
`p`. The function returns in a `CGAL::Triple` the resulting output
301301
iterators.

0 commit comments

Comments
 (0)