Tagged Questions

6
votes
2answers
820 views

Check if Polygon is Self-Intersecting

I have a System.Windows.Shapes.Polygon object, whose layout is determined completely by a series of Points. I need to determine if this Polygon is self intersecting; i.e., if any of the sides of the ...
4
votes
3answers
229 views

“snapping” polygons together

I have a set of polygons representing administrative districts. The districts were digitized by hand, and there are small spaces between polygons where the polygons should be touching. There are ...
4
votes
1answer
615 views

How to calculate the normal of points on a 3D cubic Bézier curve given normals for its start and end points?

I'm trying to render a "3D ribbon" using a single 3D cubic Bézier curve to describe it (the width of the ribbon is some constant). The first and last control points have a normal vector associated ...
3
votes
3answers
140 views

Union of many (more than two) polygons without holes

Im creating union of polygons without holes. Input polygons are without holes and also output one should be. I already have working algorithm for finding it for two polygons. But in case of more than ...
3
votes
7answers
891 views

How can a convex polygon be broken down into right triangles aligned on the X- and Y- axes?

Given a convex polygon represented by a set of vertices (we can assume they're in counter-clockwise order), how can this polygon be broken down into a set of right triangles whose legs are aligned ...
2
votes
3answers
63 views

How to intersect multiple polygons?

I am looking for an algorithm with the following input and output: Input: A set of polygons in a plane. E.g. P1...Pn and S. (P1...Pn might be concave, S is convex.) Output: The area of theset of ...
1
vote
3answers
1k views

How to calculate the area of multiple overlapping right-angled polygons?

I am looking for a way to calculate the common areas covered by multiple overlapping polygons. The polygons are all right-angled, if that helps makes things easier. So for example: BBBBB ...