Tagged Questions

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
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
56 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 ...
0
votes
0answers
153 views

Determine if a set of points is a polygon [closed]

Given a set of points in 2D the resulting polygon can be convex, concave or 'not a polygon'. The definition that I am using for 'not a polygon' is that the line connecting two points crosses another ...