Skip to content

Commit f35ecec

Browse files
authored
Remove hyphens in some words (#8892)
## Summary of Changes Remove hyphens in "preprocess", "postprocess", and "counterclockwise". I just realize that the Firefox wordchecker does not agree with "postprocess" ## Release Management * Affected package(s): many * License and copyright ownership: unchanged
2 parents f467885 + 2bdeff8 commit f35ecec

File tree

49 files changed

+76
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+76
-76
lines changed

Advancing_front_surface_reconstruction/doc/Advancing_front_surface_reconstruction/Advancing_front_surface_reconstruction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ We describe next the algorithm and provide examples.
4949

5050
\note A \ref tuto_reconstruction "detailed tutorial on surface reconstruction"
5151
is provided with a guide to choose the most appropriate method along
52-
with pre- and post-processing.
52+
with pre- and postprocessing.
5353

5454
\section AFSR_Definitions Definitions and the Algorithm
5555

Advancing_front_surface_reconstruction/include/CGAL/Advancing_front_surface_reconstruction.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ namespace CGAL {
382382
int _facet_number;
383383

384384
//---------------------------------------------------------------------
385-
// For post-processing
385+
// For postprocessing
386386
mutable int _postprocessing_counter;
387387
int _size_before_postprocessing;
388388

@@ -2432,7 +2432,7 @@ namespace CGAL {
24322432

24332433
std::size_t itmp, L_v_size_mem;
24342434
L_v_size_mem = L_v.size();
2435-
if ((vh_on_border_inserted != 0)&& // to post-process only the borders
2435+
if ((vh_on_border_inserted != 0)&& // to postprocess only the borders
24362436
(L_v.size() < .1 * _size_before_postprocessing))
24372437
{
24382438
{

Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ class Alpha_wrapper_3
348348

349349
#ifdef CGAL_AW3_TIMER
350350
t.stop();
351-
std::cout << "Manifoldness post-processing took: " << t.time() << " s." << std::endl;
351+
std::cout << "Manifoldness postprocessing took: " << t.time() << " s." << std::endl;
352352
t.reset();
353353
t.start();
354354
#endif

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

Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public Gps_bfs_base_visitor<Arrangement_, Gps_bfs_xor_visitor<Arrangement_> >
5252
return (ic % 2) == 1;
5353
}
5454

55-
//! after_scan post-processing after bfs scan.
55+
//! after_scan postprocessing after bfs scan.
5656
/*! The function fixes some of the curves, to be in the same direction as the
5757
half-edges.
5858

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) {

Documentation/doc/Documentation/Tutorials/Tutorial_reconstruction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ through the points.
255255

256256
Each of these methods produce a triangle mesh stored in different
257257
ways. If this output mesh is hampered by defects such as holes or
258-
self-intersections, \cgal provide several algorithms to post-process
258+
self-intersections, \cgal provide several algorithms to postprocess
259259
it (hole filling, remeshing, etc.) in the package \ref PkgPolygonMeshProcessing "Polygon Mesh Processing".
260260

261261
We do not discuss these functions here as there are many

Documentation/doc/scripts/test_doxygen_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ else
9191
bash -$- ./compare_testsuites.sh $PWD/build_doc/doc_output $PWD/doc_ref 1> /dev/null
9292
fi
9393
echo "done."
94-
#add post-processing
94+
#add postprocessing
9595
cd ./build_doc
9696
echo "Adding postprocessing..."
9797
make -j$NB_CORES doc_with_postprocessing &>> ./build_logs

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

Jet_fitting_3/doc/Jet_fitting_3/Jet_fitting_3.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ computed using rings on the triangulation. Results are twofold:
280280
numerical information on the computation: condition number and the
281281
PCA basis;
282282
<LI>another text file that records raw data (better for a visualization
283-
post-processing).
283+
postprocessing).
284284
</UL>
285285

286286
\cgalFigureRef{figjet3figdavid} and

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) )

Mesh_3/include/CGAL/Labeled_mesh_domain_3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ class Labeled_mesh_domain_3
656656
* \cgalParamExtra{The return type of the function depends on whether this parameter
657657
* or `input_features` are provided or not.}
658658
* \cgalParamExtra{If `weights` is provided, it must either be adapted to the detected features,
659-
* or post-processed during feature detection to keep consistency
659+
* or postprocessed during feature detection to keep consistency
660660
* of the output `MeshDomainWithFeatures_3`.
661661
* Available functors implement the necessary modifications.}
662662
* \cgalParamNEnd

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

Poisson_surface_reconstruction_3/doc/Poisson_surface_reconstruction_3/Poisson_surface_reconstruction_3.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ solving for the implicit function before function evaluation.
2929

3030
\note A \ref tuto_reconstruction "detailed tutorial on surface reconstruction"
3131
is provided with a guide to choose the most appropriate method along
32-
with pre- and post-processing.
32+
with pre- and postprocessing.
3333

3434

3535
\section Poisson_surface_reconstruction_3Common Common Reconstruction Pipeline
@@ -45,7 +45,7 @@ and 6) Surface reconstruction.
4545
\cgal provides algorithms for all steps listed above except alignment.
4646

4747
Chapter \ref chappoint_set_processing_3 "Point Set Processing"
48-
describes algorithms to pre-process the point set before
48+
describes algorithms to preprocess the point set before
4949
reconstruction with functions devoted to the simplification, outlier
5050
removal, smoothing, normal estimation and normal orientation.
5151

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

Scale_space_reconstruction_3/doc/Scale_space_reconstruction_3/Scale_space_reconstruction_3.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A triangulated surface mesh is generated by first computing the point set at a c
1919

2020
\note A \ref tuto_reconstruction "detailed tutorial on surface reconstruction"
2121
is provided with a guide to choose the most appropriate method along
22-
with pre- and post-processing.
22+
with pre- and postprocessing.
2323

2424

2525
\section ScaleSpaceReconstruction3secMethod Scale-Space
@@ -92,7 +92,7 @@ The surface mesh constructed at scale \f$ s \f$ is non-self-intersecting. The in
9292

9393
The surface mesh will not have edges incident to only one triangle or holes, loops of such edges, and the triangles are all oriented away from the point set. If the point set has <em>holes</em>, it is likely that the surface mesh will contain overlapping triangles with opposite orientation touching this hole.
9494

95-
An additional treatment can be applied to force the output surface to be 2-manifold: small flat volumes are found before reconstructing and the surface is forced to only use one side of the volume while keeping consistency with the adjacent singular facets. Only one side of each singular facet is used. In addition, non-manifold edges and vertices are removed as a post-processing. The facets that have been discarded to make the surface 2-manifold are stored and accessible.
95+
An additional treatment can be applied to force the output surface to be 2-manifold: small flat volumes are found before reconstructing and the surface is forced to only use one side of the volume while keeping consistency with the adjacent singular facets. Only one side of each singular facet is used. In addition, non-manifold edges and vertices are removed as a postprocessing. The facets that have been discarded to make the surface 2-manifold are stored and accessible.
9696

9797
If the object is not densely sampled or has disconnected components, the reconstructed surface may have several disconnected components. The surface is either an unordered collection of triangles, or the same collection sorted per \em shell. A shell is a collection of connected triangles that are locally oriented towards the same side of the surface.
9898

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.

Set_movable_separability_2/doc/Set_movable_separability_2/Set_movable_separability_2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Chapter_2D_Regularized_Boolean_Set-Operations
7777
"2D Regularized Boolean Set-Operations" for the precise definition
7878
of simple polygons. Secondly, any consecutive three vertices cannot be
7979
collinear. If you suspect that the input polygon may not satisfy the
80-
latter condition, pre-process the polygon to eliminate this
80+
latter condition, preprocess the polygon to eliminate this
8181
ill-condition.
8282

8383
The implementation is based on an algorithm developed by Shamai and

Shape_detection/include/CGAL/Polygon_mesh_processing/region_growing.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class One_ring_neighbor_query_with_constraints
126126
\cgalParamExtra{this parameter and `cosine_of_maximum_angle` are exclusive}
127127
\cgalParamNEnd
128128
\cgalParamNBegin{postprocess_regions}
129-
\cgalParamDescription{Apply a post-processing step to the output of the region growing algorithm.}
129+
\cgalParamDescription{Apply a postprocessing step to the output of the region growing algorithm.}
130130
\cgalParamType{`bool`}
131131
\cgalParamDefault{false}
132132
\cgalParamNEnd
@@ -212,7 +212,7 @@ region_growing_of_planes_on_faces(const PolygonMesh& mesh,
212212

213213
if (choose_parameter(get_parameter(np, internal_np::postprocess_regions), false))
214214
{
215-
// first try for a post-processing: look at regions made of one face and check if a
215+
// first try for a postprocessing: look at regions made of one face and check if a
216216
// larger region contains its 3 vertices and if so assigned it to it.
217217
typedef typename boost::property_traits<RegionMap>::value_type Id;
218218
for (std::size_t i=0; i<tmp.size(); ++i)

Shape_regularization/doc/Shape_regularization/Shape_regularization.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ only return groups of indices of segments with similar orientations and/or posit
253253
\subsubsection QP_Regularization_Segments_Simplification Simplifying Segments
254254

255255
After regularizing angles and offsets, simplifying segments with similar properties
256-
is a common post-processing task. This \cgal component provides an utility function
256+
is a common postprocessing task. This \cgal component provides an utility function
257257
`Segments::unique_segments()` that takes a set of input segments, groups them with
258258
respect to the collinearity property, and then returns for each group of collinear segments
259259
a segment that best fits this group (see the figure below).

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,

0 commit comments

Comments
 (0)