-
Issue DetailsI'm using "CGAL/Triangulation_3.h" header to generate tetra 3D mesh from 3D points. Source Codethank you Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
An edge is a If you are confused by the doc, you can also search the CGAL code base to see how functions are used in practice. |
Beta Was this translation helpful? Give feedback.
An edge is a
Triple<Cell_handle, int, int>. See 3D triangulations representations and more generally the 3D triangulation data structure reference manual (e.g. https://doc.cgal.org/latest/TDS_3/classTriangulationDataStructure__3_1_1Cell.html will give you the API of the cell). Here,it->firstwill give you the cell,it->first->vertex(index)the vertex,it->first->vertex(index)->point()the point, etc.If you are confused by the doc, you can also search the CGAL code base to see how functions are used in practice.