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 ...
6
votes
2answers
330 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 ...
6
votes
4answers
213 views

Can I run GLU (OpenGL) on a headless server?

we're trying to use GLU's tesselation functions on a headless, GNU/linux server. We'd like to use PyOpenGL for that, but the problem is that it crashes on a call to gluNewTess (Segmentation fault) ...
3
votes
2answers
116 views

Determine if polygon has a hole?

After experimenting with some triangulation work I ran across the question on how to determine if a polygon has a hole? I know how to handle a known hole but am unsure of how to determine if one ...
0
votes
2answers
163 views

The difference between triangulation and mesh

I have done some computer graphical programming recently, and I have no experience before. I used the library call CGAL(computer geometry algorithm library). Also, I noticed that there is class for ...