Approximating Bezier Curves of Degree N - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T00:09:26Z http://stackoverflow.com/feeds/question/764415 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/764415/approximating-bezier-curves-of-degree-n 2 Approximating Bezier Curves of Degree N mawaldne 2009-04-18T22:58:00Z 2009-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#773516 1 Answer by simon for Approximating Bezier Curves of Degree N simon 2009-04-21T16:36:35Z 2009-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#855152 0 Answer by J. Peterson for Approximating Bezier Curves of Degree N J. Peterson 2009-05-12T22:17:36Z 2009-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 &amp; collect the terms for frequently used values of N.</p>