Quadratic Bezier Interpolation - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:01:14Zhttp://stackoverflow.com/feeds/question/1074395http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1074395/quadratic-bezier-interpolation1Quadratic Bezier InterpolationMrinny2009-07-02T13:39:11Z2009-07-08T16:30:19Z
<p>Hi,
I would like to get some code in AS2 to interpolate a quadratic bezier curve. the nodes are meant to be at constant distance away from each other. Basically it is to animate a ball at constant speed along a non-hyperbolic quadratic bezier curve defined by 3 pts.
Thanks!</p>
http://stackoverflow.com/questions/1074395/quadratic-bezier-interpolation/1098864#10988642Answer by Naaff for Quadratic Bezier InterpolationNaaff2009-07-08T15:35:05Z2009-07-08T15:35:05Z<p>The Bezier curve math is really quite simple, so I'll help you out with that and you can translate it into ActionScript.</p>
<p>A 2D quadratic Bezier curve is defined by three <code>(x,y)</code> coordinates. I will refer to these as <code>P0 = (x0,y0)</code>, <code>P1 = (x1,y1)</code> and <code>P2 = (x2,y2)</code>. Additionally a parameter value <code>t</code>, which ranges from <code>0</code> to <code>1</code>, is used to indicate any position along the curve. All <code>x</code>, <code>y</code> and <code>t</code> variables are real-valued (floating point).</p>
<p>The equation for a quadratic Bezier curve is:</p>
<pre><code>P(t) = P0*(1-t)^2 + P1*2*(1-t)*t + P2*t^2
</code></pre>
<p>So, using pseudocode, we can smoothly trace out the Bezier curve like so:</p>
<pre><code>for i = 0 to step_count
t = i / step_count
u = 1 - t
P = P0*u*u + P1*2*u*t + P2*t*t
draw_ball_at_position( P )
</code></pre>
<p>This assumes that you have already defined the points <code>P0</code>, <code>P1</code> and <code>P2</code> as above. If you space the control points evenly then you should get nice even steps along the curve. Just define step_count to be the number of steps along the curve that you would like to see.</p>
http://stackoverflow.com/questions/1074395/quadratic-bezier-interpolation/1098902#10989020Answer by Martin malek for Quadratic Bezier InterpolationMartin malek2009-07-08T15:40:29Z2009-07-08T16:30:19Z<p>Please note that the expression can be done much more efficient mathematically.</p>
<pre><code>P(t) = P0*(1-t)^2 + P1*2*(1-t)*t + P2*t^2
</code></pre>
<p>and </p>
<pre><code>P = P0*u*u + P1*2*u*t + P2*t*t
</code></pre>
<p>both hold t multiplications which can be simplified.</p>
<p>For example:</p>
<p><code>C = A*t + B(1-t) = A*t + B - B*t = t*(A-B) + B</code> = You saved one multiplication = Double performance.</p>