Outline of cubic bezier curve stroke - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T00:45:13Zhttp://stackoverflow.com/feeds/question/408457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/408457/outline-of-cubic-bezier-curve-stroke0Outline of cubic bezier curve strokeLoci2009-01-03T01:48:40Z2009-05-11T13:17:48Z
<p>By stroke of the cubic bezier curve I mean rendering a curve 'A' with a specific line width 'w'.</p>
<p>How can I derive other cubic bezier curves that describe the outline of the stroke of bezier 'A' ?</p>
http://stackoverflow.com/questions/408457/outline-of-cubic-bezier-curve-stroke/408491#4084911Answer by Nils Pipenbrinck for Outline of cubic bezier curve strokeNils Pipenbrinck2009-01-03T02:18:19Z2009-01-03T02:18:19Z<p>Ohhh. You want to get the offset-curves of an bezier curve. </p>
<p>Bad news. this is hard because these curves can't be simply derived numerical. They contain all kinds of intersections, loops and other nasty stuff.</p>
<p>There are some approximations though. The best approach I've read so far is from a paper by Thomas F. Hain (Fast, Precise Flattening of Cubic Bézier Path and Offset Curves). It's on his homepage.</p>
<p><a href="http://www.cis.usouthal.edu/~hain/old%20hainweb/BezierFlattening.pdf" rel="nofollow">http://www.cis.usouthal.edu/~hain/old%20hainweb/BezierFlattening.pdf</a></p>
<p>He does flattening, so his paper is mostly about decomposes the offset curves into line-segments and circular arc-segments, but you can merge them back to beziers later. </p>
<p>For better understanding you may want to read his other bezier related papers as well.</p>
http://stackoverflow.com/questions/408457/outline-of-cubic-bezier-curve-stroke/848061#8480610Answer by kibibu for Outline of cubic bezier curve strokekibibu2009-05-11T13:17:48Z2009-05-11T13:17:48Z<p>Unfortunately, I don't have enough reputation to comment on the previous answer, however the paper in question, as well as a few others related to Bezier curves, can be found here:</p>
<p><a href="http://www.cis.usouthal.edu/~hain/general/Publications/Bezier/" rel="nofollow">http://www.cis.usouthal.edu/~hain/general/Publications/Bezier/</a></p>