Question about Steiner point location in CGAL Constrained Delaunay Triangulation 3D #9099
-
|
In the documentation, it seems the Steiner points are only added on the constrained facets and edges specified by the user. However during my tests of the package, I sometimes encounter the problem where the Steiner point is not added on the constrained surface. Let's say I have a cloud of points and some constraints from which I want to generate a constrained tetrahedralization. What would happen if:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi, that is strange: Steiner vertices are indeed supposed to be added on constrained facets (or edges) only? Do you a way to share the code and input data so that we can reproduce?
The code of CGAL Constrained Delaunay Triangulation 3D does not really change behavior depending on the surface being closed or not. What do you expect as difference between those three cases? |
Beta Was this translation helpful? Give feedback.
-
|
Regarding the problem of point not located on the surface, it was a bug in the library I used to locate the point. So there is no problem anymore. If the surface is closed, you could add the Steiner points not on the surface but in the volume in order to preserve the surface (like TetGen can do, as far as I understand), so I was wondering if CGAL might did this. Anyway, there is actually no problem on CGAL side. |
Beta Was this translation helpful? Give feedback.
Regarding the problem of point not located on the surface, it was a bug in the library I used to locate the point. So there is no problem anymore.
If the surface is closed, you could add the Steiner points not on the surface but in the volume in order to preserve the surface (like TetGen can do, as far as I understand), so I was wondering if CGAL might did this. Anyway, there is actually no problem on CGAL side.