how to control the speed of animation, using a Bezier curve?
问题 I found formula only for vector coordinates of cubic curve who help in depicts(build vector image). Here it is: B(t) = (1-t)^3*P0 + 3*t*(1-t)^2*P1 + 3*t^2*(1-t)*P2 + t^3*P3 See more at: http://www.ams.org/samplings/feature-column/fcarc-bezier#sthash.85XhcT7H.dpuf This formula returns the coordinates of the vector, but I can not understand how they can influence the speed of the animation, as in http://cubic-bezier.com/#.17,.67,.83,.67. Please, direct me to the right way so that I could