python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Creating first triangle in DeWall Algorithm (Delaunay Triangulation)
I am trying to understand a particular approach of the DeWall algorithm to perform a 2D/3D delaunay triangulation/tetrahedralization (DT). I am especially interested in the 3D case. Where other divide...
christianl
Votes: 0
Answers: 0
How to get the edges of a 3D Delaunay tessellation with CGAL?
The question is clear from the title. I tried a ton of variants of
const DT3::Finite_edges itedges = mesh.finite_edges();
for(DT3::Finite_edges_iterator eit = itedges.begin(); eit != itedges.end()...

Stéphane Laurent
Votes: 0
Answers: 1