Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a question regarding formula curving through a control point. As you know, HTML Canvas has quadraticCurveTo(x1, y1, x2, y2) with x1 and x2 being the control point.

However when you try to draw a stroke using it, the stroke will never touch the control point.

So we have this formula:

x1 = xt * 2 - (x0 + x2) / 2;
y1 = yt * 2 - (y0 + y2) / 2;

(xt, yt) = the point you want to curve through. t for tangent as it is 90 degrees perpendicular at that point.

This recalculates the control point position.

I got this formula from a book, however the book doesn't explain how it is been derived. I tried google around but in vain.

Anyone knows how this formula is derived?

Thanks, Venn.

share|improve this question
This is from stackoverflow.com/questions/6711707/… for anyone wondering – Walkerneo Mar 15 at 3:15

2 Answers

up vote 1 down vote accepted

Quadratic Bezier curve is described by equations:

x(t) = x0 * (1-t)^2 + 2 * x1 * t * (1 - t) + x2 * t^2 (and similar for y(t)).

If we apply parameter value t = 1/2 (in some way - middle of the curve), we will get your formula:

x(t=1/2) = xt = x0 * 1/4 + 2 * x1 * 1/4 + x2 * 1/4

then

x1/2 = xt - (x0 + x2)/4

x1 = 2 * xt - (x0 + x2)/2

share|improve this answer
Thanks for the help! This is great. – Vennsoh Mar 16 '12 at 1:45

This is called a Spline. More to the point, it appears that they are using a Bezier Curve.

share|improve this answer
Thanks but I still don't get it how x1 = xt * 2 - (x0 + x2) / 2; y1 = yt * 2 - (y0 + y2) / 2; is being derived. – Vennsoh Mar 14 '12 at 22:03
@Vennsoh: Edited my answer, I believe that they are using a quadratic Bezier Curve. See the derivation in the linked wiki article. – mdkess Mar 14 '12 at 22:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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