Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
224 views

Drawing a concave polygon in OpenGL

I have a concave polygon I need to draw in OpenGL. The polygon is defined as a list of points which form its exterior ring, and a list of lists-of-points that define its interior rings (exclusion ...
4
votes
4answers
582 views

Given a large set of vertices in a non-convex polygon, how can i find the edges?

I have a set of vertices(called A) and I want to find all the border vertices such that this border vertices set is an outline of the shape. Many of the vertices in A are redundant because they are ...
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
2answers
621 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
4answers
3k views

Is there an efficient\easy way to draw a concave polygon in Direct3d

I'm trying to draw a polygon using c# and directx All I get is an ordered list of points from a file and I need to draw the flat polygon in a 3d world. I can load the points and draw a convex shape ...
1
vote
1answer
82 views

3D contour of a list of points (concave hull)

I have a list of Vector3 points in c#, and I need to calculate the concave contour of these. There's really a lot of references around, especially for -convex- resolution (which I have successfully ...
1
vote
3answers
269 views

Scaling an arbitrary polygon

I've been scouring the internet for days, but have been unable to find a good answer (or at least one that made sense to me) to what seems like it should be a common question. How does one scale an ...
1
vote
5answers
311 views

How to form a Concave shape out of Convex shapes?

i'm trying to get around the rule of only being able to form convex shapes in the SFML c++ library. To do this I'm planning on testing given vertices, and if concave, splitting the vertices ...
1
vote
2answers
498 views

Concave Polygon Line Clipping without Degenerate Edges

I have search and researched the internet last days to find a suitable method for my problem. Problem: Clip a concave polygon against an infinite line without direction (Actually a polygon against a ...
1
vote
2answers
292 views

Whats an easy way to fill a Concave PathGeometry to be Convex (finding the concave vertices & removing them)?

I've got a PathGeometry (polygon) built up of LineSegments on one PathFigure and I'd like to ensure that it's Convex. I have a method using the CrossProduct to determine whether the geometry is ...
1
vote
2answers
721 views

Determine ordering of polygon 3D

I have a list of vertices 3D, creating a polygon. I need to triangulate it and i use the cutting ears algorithm. My polygons are non-convex, so i need to find the concave angles in the polygon. I also ...
0
votes
1answer
78 views

How to form Concave shapes from convex pieces Confusion

Hey so i was told in a previous answer that to make concave shapes out of multiple convex ones i do the following: If you don't have a convex hull, perform a package wrapping algorithm to get a ...