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
2k 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 ...
5
votes
2answers
153 views
Algorithm for completing a partial triangulation (Constrained Triangulation)
Given a set of points in a plane and an incomplete triangulation of the convex hull of the points (only some edges are given), I'm looking for an algorithm to complete the triangulation (the initial ...
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 ...
3
votes
5answers
108 views
Culling interior triangles
I have an array of thousands of quads; 4-sided 3D polygons. All I know are the coordinates of the quad corners.
A subset of these quads define the closed outer shell of a 3D shape. The remaining ...
2
votes
2answers
88 views
Polygon Triangulation using monotone polygons
I have a simple polygon with no holes and it needs to be triangulated into convex polygons for use in a physics engine, and also so I can use those convex polygons for rendering via triangle strips.
...
2
votes
2answers
78 views
Triangulation of multiple 2d sections
I have multiple 2d polygons built up from points in y and z direction, each of these "faces" are located at a cordinate x. I want to show this as a solid model and therefor need to triangulate the ...
1
vote
1answer
28 views
Determine winding of a 2D triangles after triangulation
I'm using triangulation code that works pretty well (it processes polygons with holes and integrates with JTS) but apparently it doesn't respect the winding of triangles. Some output triangles are ...
1
vote
1answer
447 views
Localising a receiver using trilateration of base station signal strengths?
I have a system with a number of base station beacons, each broadcasting an infinitely fast signal describing their position on a 2D Cartesian plane. The signal strength begins with a [unitless] power ...
1
vote
1answer
313 views
What's the opposite of polygon triangulation?
After I've done a 2D triangulation, some triangles have the same color and I want to recombine them for drawing into like-colored graphics paths. I find that if I just draw the triangles one by one, ...
1
vote
1answer
41 views
comparing original and simplified TINs
I have two TINs (triangulated irregular network) of a terrain. First one (TIN1) is the original one, let's say with X number of points. And the other (TIN2) is simplified (the number of points were ...
1
vote
2answers
286 views
Determining The Coordinates Of A Point Based On Its Known Difference From Three Other Points
I have the coordinates of three points on a plane. Let's call them X1,Y1, X2,Y2, X3 Y3.
I need to calculate X4,Y4 but all I know is:
X1,Y1 is 350 units in distance from X4,Y4
X2,Y2 is 200 units in ...
0
votes
1answer
202 views
Fastest available Delaunay triangulation algorithm for GPU
Which is in your opinion the fastest available Delaunay triangulation algorithm for GPU? Or more general, in parallel
0
votes
0answers
172 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 ...
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: ...