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
In the PMP::detect_vertex_incident_patches function, the property map is calculated only for vertices incident to feature edges.
But the documentation says: "a property map that will contain the patch ids of all the faces incident to each vertex of pmesh".
I think there's a bug in the condition
// Look only at feature verticesif(!get(edge_is_feature_map, edge(halfedge(vit, pmesh), pmesh)))
continue;
at line 337, in the file "CGAL/Polygon_mesh_processing/detect_features.h"
Source Code
I have generated a cube in which each face has a point on each face that is not incident to feature edges.
The number of incident patches for these points is zero, which does not correspond to the documentation.
Issue Details
In the
PMP::detect_vertex_incident_patches
function, the property map is calculated only for vertices incident to feature edges.But the documentation says: "a property map that will contain the patch ids of all the faces incident to each vertex of pmesh".
I think there's a bug in the condition
at line 337, in the file "CGAL/Polygon_mesh_processing/detect_features.h"
Source Code
I have generated a cube in which each face has a point on each face that is not incident to feature edges.
The number of incident patches for these points is zero, which does not correspond to the documentation.
Environment
Qt 6.7.3
Everything is installed via vcpkg (classic mode).
The text was updated successfully, but these errors were encountered: