show/hide this revision's text 2 added 2 characters in body

What is the best way to approximate a cubic Bezier curve? Ideally I would want a function y(x) which would give the exact y value for any given x, but this would involve solving a cubic equation for every x value, which is too slow for my needs, and there may be numeric numerical stability issues as well with this approach.

Would this be a good solution?

    Post Made Community Wiki by Community

show/hide this revision's text 1

Approximating nonparametric cubic Bezier

What is the best way to approximate a cubic Bezier curve? Ideally I would want a function y(x) which would give the exact y value for any given x, but this would involve solving a cubic equation for every x value, which is too slow for my needs, and there may be numeric stability issues as well with this approach.

Would this be a good solution?