Tagged Questions
7
votes
3answers
407 views
Algorithm to convert vertices of a triangular strip to polygon
I have an array with vertices representing a triangular strip.
I need to convert it into polygon.
There are many solution to do the reverse, but I failed to find one for the above problem.
Or it ...
6
votes
4answers
234 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)
...
4
votes
1answer
1k views
Concave polygon drawing
For drawing complex concave polygons with OpenGL, is it better to tesselate it into triangles, or use the stencil buffer? I'm guessing the stencil buffer would be faster for a single frame, but ...
2
votes
1answer
616 views
Having trouble with ear clipping
The problem I have is coming up because I can't identify a a caved in triangle vs an ear that should actually be chopped off.
How can I tell the difference between a convex and a concave triangle?
0
votes
1answer
103 views
OpenGL - Triangulation. Can It be used as an API?
I need to have triangulation as a part of my project. OpenGL uses its own tessellation logic for rendering points.
Can the triangulation logic can be used as an API, giving points as input and get ...
0
votes
1answer
369 views
How to find z by arbitrary x,y coordinates within triangle if you have triangle vertices
Given vertices V1 (x1,y1,z1), V2 (x2,y2,z2), V3 (x3,y3,z3) of a triangle T, I have to find z coordinate of a point by it's x,y coordinate if I know that (x,y) lies within projection of triangle Tp ...