Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

How to determine if a Delaunay triangle is internal or external?

I am writing a program that requires a implementation of Medial Axis extraction, of which Delaunay triangulation is a step. External medial axis is unwanted so the corresponding external triangles are ...
4
votes
1answer
606 views

Delaunay triangulating the 2d polygon with holes

I want to triangulate the complex (but not self-intersecting) polygon with holes, so that resulting triangles all lay inside the polygon, cover that polygon completely, and obey the Delaunay triangle ...
3
votes
3answers
2k views

Find medial axis of a polygon using C#

I've been tasked to figure out how to find the centerline of a polygon. My google searches led me to believe that what I need is called the 'Medial Axis'. Like this: According to what I've read, ...
2
votes
1answer
114 views

Is it possible to construct a medial axis for a polygon in sub-quadratic time?

Is it possible to construct a medial axis for a complex, non-convex polygon with holes in sub-quadratic time? Could you point me to the algorithm explanation? Or maybe there is a library for it in ...
1
vote
1answer
307 views

Exact Medial Axis, Surfaces, Skeletonizations of 3D Polyhedra

I am interested in finding software to compute the exact medial axis (or your term of choice!) of a 3D polyhedra. I imagine the output would be a list of triangular faces, possibly edges, and ...