This is about flash scripting, actually. There's that thing called quadratic bezier spline,
p_0(1-t)^2+2p_1 t(1-t)+p_2 t^2,
right, and flash plugin has that "curveTo" command that apparently uses above expression for x(t) and y(t) to draw a curve between two points on screen. So, I was...