Approximating Bezier Curves of Degree N - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T00:09:26Zhttp://stackoverflow.com/feeds/question/764415http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/764415/approximating-bezier-curves-of-degree-n2Approximating Bezier Curves of Degree Nmawaldne2009-04-18T22:58:00Z2009-05-12T22:17:36Z
<p>I know there are methods to <a href="http://stackoverflow.com/questions/427796/approximating-nonparametric-cubic-bezier">approximate cubic Bezier curves</a> (<a href="http://www.timotheegroleau.com/Flash/articles/cubic%5Fbezier%5Fin%5Fflash.htm" rel="nofollow">this page</a> was also a good reference), but is there a quicker method to approximate a bezier curve of degree N? Or can you only use the generalization below?</p>
<p>From wikipedia:</p>
<p>The Bézier curve of degree n can be generalized as follows. Given points P0, P1,..., Pn, the Bézier curve is:</p>
<p><img src="http://upload.wikimedia.org/math/e/e/5/ee540a45155c347d28adddfcb0486b42.png" alt="alt text" /></p>
http://stackoverflow.com/questions/764415/approximating-bezier-curves-of-degree-n/773516#7735161Answer by simon for Approximating Bezier Curves of Degree Nsimon2009-04-21T16:36:35Z2009-04-21T16:36:35Z<p>A typical (general) way to speedup evaluation of expressions like this is through "forward differencing" I had a quick look at turned up <a href="http://www.cosc.brocku.ca/~cspress/HelloWorld/1999/04-apr/rendering%5Fbezier%5Fforms.html" rel="nofollow">this</a>, which looks to be the right sort of approach but I can't vouch for its accuracy as I haven't read it properly. Hope that helps (caveat, I haven't read your links completely, either, so this might be nothing new...)</p>
http://stackoverflow.com/questions/764415/approximating-bezier-curves-of-degree-n/855152#8551520Answer by J. Peterson for Approximating Bezier Curves of Degree NJ. Peterson2009-05-12T22:17:36Z2009-05-12T22:17:36Z<p>Forward differencing is very fast, but it has some cost to set up, and it can accumulate error as you step along the curve. If you're using double-precision floats, you don't need to worry much about the error issue, but if you're using fixed point or integers, it can be significant.</p>
<p>In my experience, the forward differencing set-up cost is only worth it for more than 2*(N+1) evaluations; so for a (say) cubic curve, if you need less than eight points on the curve you're better off just evaluating the curve directly eight times using the formula in the original post. </p>
<p>Note the formula is actually pretty quick if you expand out the polynomials & collect the terms for frequently used values of N.</p>