Outline of cubic bezier curve stroke - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:45:13Z http://stackoverflow.com/feeds/question/408457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/408457/outline-of-cubic-bezier-curve-stroke 0 Outline of cubic bezier curve stroke Loci 2009-01-03T01:48:40Z 2009-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#408491 1 Answer by Nils Pipenbrinck for Outline of cubic bezier curve stroke Nils Pipenbrinck 2009-01-03T02:18:19Z 2009-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#848061 0 Answer by kibibu for Outline of cubic bezier curve stroke kibibu 2009-05-11T13:17:48Z 2009-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>