Tagged Questions

7
votes
3answers
389 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 ...
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 ...
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 ...
3
votes
4answers
679 views

Library for polygon operations

I've recently encountered a need for a library or set of libraries to handle operations on 2D polygons. I need to be able to perform boolean/clipping operations (difference and union) and ...
2
votes
2answers
617 views

How do I cut triangles out of a concave Delaunay triangulation?

I'm using Delaunay to triangulate a concave polygon, but it fills in the concavities. How do I automatically remove the triangles that are outside the polygon boundaries?
2
votes
1answer
602 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?
1
vote
2answers
372 views

Simple 2d polygon triangulation

Trying to triangulate a set of simple 2d polygons, I've come up with this algorithm: 1) For each vertex in the polygon, compute the angle between the two linked edges 2) Sort vertices by decreasing ...
1
vote
2answers
281 views

General Polygon Clipper: Triangulate without additional vertices

I am using GPC to break up polygons into triangles. However, GPC is very obviously creating additional vertices while generating triangles. Is there a way to avoid this?
0
votes
1answer
41 views

Computing the area of a complex (self-intersecting) polygon

I'm making a program that selects an area within a canvas by clicking a sequence of points. The points clicked are linked by some lines this way: every new point is linked with the first and the last ...