You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operating system (Windows/Mac/Linux, 32/64 bits): Windows 64 bits
Compiler: visual c++
Release or debug mode:
Specific flags used (if any):
CGAL version: 6.0.1
Boost version: 1.86
Other libraries versions if used (Eigen, TBB, etc.):
Suggestions
I'm working with geometry from CAD. For each model I have:
face_patch_map for triangles.
edge_polyline_map with boost::graph_traits<PolygonMesh>::edge_descriptor as key type and int as value type. It has a default value of -1. And non-negative value for edges that belong to geometrically important chains of edges. In other words, each polyline (chain of edges) has its own index.
vertex_is_constrained_map which points to geometrically important points. Most often these are endpoints of polylines.
It would be great if one could specify such property maps via Named Parameters and they would be saved correctly in the out mesh.
The text was updated successfully, but these errors were encountered:
Issue Details
In surface_Delaunay_remeshing() documentation.
There is Extra in the description of
face_patch_map
named parameters:But it doesn't happen, neither in the
TriangleMeshOut
nor in theTriangleMesh
.Source Code
This is slightly modified code from example
Polygon_mesh_processing/delaunay_remeshing_example.cpp
.This example uses a model from the CGAL data.
https://github.com/CGAL/cgal/blob/master/Data/data/meshes/anchor_dense.off
Environment
Suggestions
I'm working with geometry from CAD. For each model I have:
face_patch_map
for triangles.edge_polyline_map
withboost::graph_traits<PolygonMesh>::edge_descriptor
as key type andint
as value type. It has a default value of -1. And non-negative value for edges that belong to geometrically important chains of edges. In other words, each polyline (chain of edges) has its own index.vertex_is_constrained_map
which points to geometrically important points. Most often these are endpoints of polylines.It would be great if one could specify such property maps via
Named Parameters
and they would be saved correctly in the out mesh.The text was updated successfully, but these errors were encountered: