Hey, I'd like to calculate a point on a quadratic curve. To use it with the canvas element of html5.

When I use the quadraticCurveTo() Function in JavaScript, I have a source point, a target point and a control point. How can I calculate a point on the created quadratic curve at let's say t=0.5 with "only" knowing this three points?

link|improve this question

59% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Use the quadratic Bezier formula, found, for instance, on the Wikipedia page for Bezier Curves:

quadratic Bezier formula

link|improve this answer
yeah, great. Except for that I don't understand anything... – Christian Engel Apr 12 '11 at 12:06
1  
Multiplying (adding) points in this case, means that you multiply (add) each component. That is, 3 P = [3 * P.x, 3 * p.y] and P1 + P2 = [P1.x + P2.x, P1.y + P2.y]. Finally, to square something, you multiply it with itself: x² = x * x. The last part, "t ∈ [1,0]", means that t is supposed to be between 0 and 1. – Markus Jarderot Apr 12 '11 at 12:38
1  
So, this means: Point.x = (1-t)^2 * P0.x + 2 * (1-t) * t * P1.x + t^2 * P2.x; Point.y = (1-t)^2 * P0.y + 2 * (1-t) * t * P1.y + t^2 * P2.y; Tested and it works! =) Thank you! – Christian Engel Apr 12 '11 at 13:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.