Tagged Questions
4
votes
5answers
123 views
Triangulation of polygon
Im trying to triangulate a polygon for use in a 3d model. When i try using the ear method on a polygon with points as dotted below, i get triangles where the red lines are. Since there are no other ...
2
votes
3answers
279 views
Triangulation algorithm
I've decided to create a simple demo, dividing a polygon into triangle set. Here what i've got so far:
A sequential vertex list is given (P1) forming polygon edges (polygon is not convex in most ...
1
vote
1answer
208 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
166 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 ...
0
votes
1answer
96 views
Assertion failures in constrained Delaunay triangulation with GTS
I'm getting some intermittent assertion failures when doing constrained Delaunay trianguation with the GNU Triangulated Surface Library. I've seen each of the following at different times:
...
0
votes
2answers
587 views
calculate the degree between two triangles in ansi c cuda
hi wanted to calculate the degreee between two triangles where every point of them has a 3d coordinate.... i.e.
triangle 1: point1(x1,y1,z1), point2(x2,y2,z2), point3(x3,y3,z3).
triangle 2: ...