Draw SVG Bezier curve
I have an array of control points that represent a high-order Bezier curve. How can I draw this curve using a single SVG-path? UPD: For example, I have a set of points: (x1, y1) (x2, y2) (x3, y3) (x4, y4) (x5, y5). How SVG-path will look like in the terms of C , S , Q or T ? UPD 2: SOLUTION I asked this question to depict a object path animated with TweenMax . Later I received reply on GreenSock forum . Here's CodePen example . Short answer: you can't. SVG only has built in Quadratic (2nd order) and Cubic curves (3rd order), whereas the curve you're showing is Quartic (4th order). SVG has no