Skip to content

Commit

Permalink
Merge pull request #7914 from sloriot/PMP-remesh_planar_faces_missing…
Browse files Browse the repository at this point in the history
…_remove_const

PMP remesh_planar_patches: handle const meshes
  • Loading branch information
lrineau committed Dec 11, 2023
2 parents 7cfba8f + 63556d4 commit d380a34
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ template <typename Kernel,
typename VertexPointMap>
void
mark_constrained_edges(
TriangleMesh& tm,
const TriangleMesh& tm,
EdgeIsConstrainedMap edge_is_constrained,
double coplanar_cos_threshold,
const VertexPointMap& vpm)
Expand All @@ -319,7 +319,7 @@ template <typename Kernel,
typename VertexCornerIdMap>
std::size_t
mark_corner_vertices(
TriangleMesh& tm,
const TriangleMesh& tm,
EdgeIsConstrainedMap& edge_is_constrained,
VertexCornerIdMap& vertex_corner_id,
double coplanar_cos_threshold,
Expand Down Expand Up @@ -546,7 +546,7 @@ template <typename Kernel,
typename FaceCCIdMap,
typename VertexPointMap>
std::pair<std::size_t, std::size_t>
tag_corners_and_constrained_edges(TriangleMesh& tm,
tag_corners_and_constrained_edges(const TriangleMesh& tm,
double coplanar_cos_threshold,
VertexCornerIdMap& vertex_corner_id,
EdgeIsConstrainedMap& edge_is_constrained,
Expand Down

0 comments on commit d380a34

Please sign in to comment.