I'm trying to draw a 6 grade (start point, 4 control points, end point) Bezier curve but the API offers me only cubic and quadratic curves methods.

Is there a way to split or approximate the 6 (or n) grade curve ONLY through cubic or quadratic ?

[Edit] After some struggle I decided to write the library myself. Take a look here How to draw n grade Bézier curve with Canvas API

I hope other will benefit from it.

link|improve this question
I think you should ask this on math.stackexchange.com – Ishtar Dec 13 '11 at 11:31
@ Ishtar Thanks, did that here math.stackexchange.com/questions/92246/… – Alex Dec 17 '11 at 14:32
feedback

1 Answer

Generally no. I would suggest creating your own Bezier curve method for 6 points (use wiki). And then use lines to draw the curve.

link|improve this answer
The reason I would have liked to use quad and cubic is that they are very fast and sometimes even hardware accelerated. – Alex Dec 13 '11 at 11:38
True, but if the API does not support them, there is not much to do. You really can not do a god approximate with quad or cube curves. There might be some fast way with shaders though. – Matic Oblak Dec 13 '11 at 11:46
It seems that I can use a BSpline line and then cut it in Bezier curves...so in the end I got a better shape but using Bezier cubic curves :) – Alex Dec 22 '11 at 9:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.