Skip to content

Commit 0812a83

Browse files
authored
Spelling correction (#9599)
Spelling correction
2 parents 8011d9d + 1e92c06 commit 0812a83

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Installation/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Release date: December 2026
2525

2626
- Added a new parameter `edge_is_protected_map` to
2727
[`void CGAL::Polygon_mesh_processing::isotropic_remeshing()`](https://doc.cgal.org/6.3/PMP_Remeshing/group__PMP__local__remeshing__grp.html),
28-
to distinguish betweeen "constrained" edges that can be resampled while the constrained edges polyline graph remains topologically unchanged,
28+
to distinguish between "constrained" edges that can be resampled while the constrained edges polyline graph remains topologically unchanged,
2929
and "protected" edges that may not be modified at all by remeshing.
3030

3131
### [Boolean Operations On Meshes](https://doc.cgal.org/6.3/Manual/packages.html#PkgPMPBooleanOperations)

PMP_Remeshing/examples/PMP_Remeshing/isotropic_remeshing_with_constrained_edges.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ int main(int argc, char* argv[])
6363
std::size_t number_of_patches =
6464
PMP::sharp_edges_segmentation(mesh, 90, eif, pid);
6565
std::cout << "The input mesh has been segmented into " << number_of_patches << " patches." << std::endl;
66-
std::cout << "Number of constained edges : " << count_edges(mesh, eif) << std::endl;
66+
std::cout << "Number of constrained edges : " << count_edges(mesh, eif) << std::endl;
6767
std::cout << "Number of protected edges : " << count_edges(mesh, Border_pmap(mesh)) << std::endl;
6868

6969
// Border edges are protected (i.e. kept identical),
@@ -77,7 +77,7 @@ int main(int argc, char* argv[])
7777
.number_of_iterations(3));
7878
std::cout << std::endl;
7979
std::cout << "Remeshing done." << std::endl;
80-
std::cout << "Number of constained edges : " << count_edges(mesh, eif) << std::endl;
80+
std::cout << "Number of constrained edges : " << count_edges(mesh, eif) << std::endl;
8181
std::cout << "Number of protected edges : " << count_edges(mesh, Border_pmap(mesh)) << std::endl;
8282

8383
CGAL::IO::write_polygon_mesh("out.ply", mesh,

0 commit comments

Comments
 (0)