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!
|
|
|||
|
|
|
The Bezier curve math is really quite simple, so I'll help you out with that and you can translate it into ActionScript. A 2D quadratic Bezier curve is defined by three The equation for a quadratic Bezier curve is:
So, using pseudocode, we can smoothly trace out the Bezier curve like so:
This assumes that you have already defined the points |
||
|
|
|
|
Please note that the expression can be done much more efficient mathematically.
and
both hold t multiplications which can be simplified. For example:
|
|||
|
