Fix typos

Co-authored-by: Mael <mael.rouxel.labbe@geometryfactory.com>
This commit is contained in:
Sebastien Loriot 2022-05-09 17:47:53 +02:00 committed by GitHub
parent 09940df90d
commit b4ffa85e86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -33,8 +33,8 @@ be checked on each surface facet during the mesh refinement process.
*/ */
enum Mesh_facet_topology enum Mesh_facet_topology
{ {
FACET_VERTICES_ON_SURFACE = 1,//!< Each vertex of the facet have FACET_VERTICES_ON_SURFACE = 1,//!< Each vertex of the facet has
//!< to be on the surface, on a curve, or on a corner. //!< to be on the surface, on a curve, or on a corner.
FACET_VERTICES_ON_SAME_SURFACE_PATCH = 2, //!< The three vertices of a facet belonging FACET_VERTICES_ON_SAME_SURFACE_PATCH = 2, //!< The three vertices of a facet belonging
//!< to a surface patch `s` have to be on //!< to a surface patch `s` have to be on
//!< the same surface patch `s`, on a curve or on a corner. //!< the same surface patch `s`, on a curve or on a corner.

View File

@ -175,7 +175,7 @@ namespace Polygon_mesh_processing {
template<typename TriangleMesh template<typename TriangleMesh
, typename TriangleMeshOut = TriangleMesh , typename TriangleMeshOut = TriangleMesh
, typename NamedParameters = parameters::Default_named_parameters> , typename NamedParameters = parameters::Default_named_parameters>
TriangleMesh surface_Delaunay_remeshing(const TriangleMesh& tmesh TriangleMeshOut surface_Delaunay_remeshing(const TriangleMesh& tmesh
, const NamedParameters& np = parameters::default_values()) , const NamedParameters& np = parameters::default_values())
{ {
using parameters::get_parameter; using parameters::get_parameter;