Tagged Questions
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 ...
6
votes
2answers
333 views
Polygon Partioning vs Triangulation
Hey so I recently asked this question about how to cut down a concave polygon to convex ones, and i was suggested to do Triangulation or Polygon Partioning.
The library i'm using (SFML\Box2D) only ...
3
votes
1answer
165 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
0answers
178 views
Is OpenCV's Subdiv2D / Delaunay broken when the point given to locate is one of the triangle's vertices?
The code for building a triangulation:
CvSubdiv2D *subdiv;
CvMemStorage *storage = cvCreateMemStorage(0);
CvRect rectangle = cvRect(0, 0, 100, 100);
subdiv = cvCreateSubdivDelaunay2D(rectangle, ...
1
vote
1answer
178 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
1answer
163 views
Does the GPC polygon clipper do triangulation?
I was looking at this question Here in regards to this library. However it is still unclear to me if this library can do like glu tesselator does and return a series of triangles which I can then ...