Why in this example the mesh uses inexact constructions while the property map uses exact_construction? #8356
Unanswered
citystrawman
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Here's the cgal documentation for corefinement, it constructs a mesh using inexact_constructions, and a property_map using exact_construction:
and I do not understand why here Mesh uses
Exact_predicates_inexact_constructions_kernel
while the Exact_point_map usesProperty_map<vertex_descriptor,EK::Point_3>
.Additionally, the Exact_point_map's
vertex_descriptor
is derived from Mesh, which usesExact_predicates_inexact_constructions_kernel
, does that contradict withExact_predicates_exact_constructions_kernel
?Beta Was this translation helpful? Give feedback.
All reactions