Tagged Questions
10
votes
7answers
8k views
Polygon Triangulation with Holes
I am looking for an algorithm or library (better) to break down a polygon into triangles. I will be using these triangles in a Direct3D application. What are the best available options?
Here is what ...
7
votes
2answers
1k views
Lightweight Delaunay trianguation library (for c++)
I'd like to play around with some (2D) Delaunay triangulations, and am looking for a reasonably small library to work with. I'm aware of CGAL, but I was wondering if there was something fairly simple ...
2
votes
1answer
158 views
CGAL: Find face/triangle a point belongs to?
After reading about it I've come to this:
#include <vector>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Delaunay_triangulation_2.h>
typedef ...
2
votes
3answers
1k views
How do I iterate over faces in CGAL
I am trying to use CGAL to do some Delaunay triangulation. I used one of the CGAL samples to compute a triangulation which includes a height field attribute.
The problem I have having is that I have ...
1
vote
1answer
177 views
Getting a vertex_handle from an edge_iterator
I'm having quite some difficulty getting a vertex_handle for each of the end points of an edge in a Delaunay triangulation. Since I hammered my head against this for several hours I thought maybe one ...
1
vote
2answers
886 views
c++: CGAL 2D delauny triangulation: Concave Shapes
I am currently getting into CGAL for some 2D triangulation tasks and I also got something simple to work allready. Anyhow I dont really get how to triangulate concave shapes since Right now I always ...
0
votes
1answer
81 views
CGAL: Help getting triangles coordinates from Delaunay Triangulation
I'm new with CGAL, i'm sure my question is very simple.
I am trying to use CGAL to do some Delaunay triangulation. I have a grid with N 3D points over a sphere and I want to triangulate the sphere ...
0
votes
1answer
121 views
CGAL 2D Delaunay Triangulation: How to get all the edges
How to get/iterate over all the edges in the 2D delaunay graph in CGAL (C++)?
For example, in MATLAB this is just edges(dt).
0
votes
0answers
158 views
CGAL 3d Delaunay triangulation keeping initial surface structure
I have a problem with 3d mesh generation using CGAL. I have a 3d surface (given by a set of triangles) and I need to generate mesh with 3d Delaunay triangulation (i.e. set of tetrahedrons) within this ...