Tagged Questions

3
votes
1answer
319 views

Draw a quadratic bezier curve through three given points

I have three points in 2D and I want to draw a quadratic bezier curve passing through them. How do I calculate the middle control point (x1 and y1 as in quadTo)? I know linear algebra from college but ...
3
votes
3answers
817 views

Convert a quadratic curve points to polynomial representation?

I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve. Using this data, how can I derive the polynomial representation of the curve?
2
votes
2answers
656 views

Fast Method to Intersect two Integer Quadratic Beziers?

Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersect. If it makes it ...
0
votes
0answers
19 views

silhouette of curve [closed]

Can someone please explain how to solve for t in the equation [B(t)×B′(t) = 0] provided by Gareth Rees on the following question: Calculate the horizon of a curved face? - Not extrema I'd love to ...
0
votes
1answer
48 views

Aproximate n grade Bezier through cubic and/or quadratic Bezier curves

I'm trying to draw a 6 grade (start point, 4 control points, end point) Bezier curve but the API offers me only cubic and quadratic curves methods. Is there a way to split or aproximate the 6 (or n) ...