Equidistant points across Bezier curves - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:24:15Z http://stackoverflow.com/feeds/question/10477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/10477/equidistant-points-across-bezier-curves 2 Equidistant points across Bezier curves Cristián Romo 2008-08-13T23:31:32Z 2009-05-12T22:23:58Z <p>Currently, I'm attempting to make multiple beziers have equidistant points. I'm currently using cubic interpolation to find the points, but because the way beziers work some areas are more dense than others and proving gross for texture mapping because of the variable distance. <strong>Is there a way to find points on a bezier by distance rather than by percentage? Furthermore, is it possible to extend this to multiple connected curves?</strong></p> http://stackoverflow.com/questions/10477/equidistant-points-across-bezier-curves/10538#10538 3 Answer by nlucaroni for Equidistant points across Bezier curves nlucaroni 2008-08-14T00:47:05Z 2008-08-14T00:50:47Z <p>distance between P<em>0 and P</em>3 (in cubic form), yes, but I think you knew that, is straight forward.</p> <p>Distance on a curve is just arc length:</p> <p><img src="http://www.codecogs.com/eq.latex?\int_{t_0}^{t_1}%20{%20|P'(t)|%20dt" alt="fig 1" /></p> <p>where:</p> <p><img src="http://www.codecogs.com/eq.latex?P%27(t)%20=%20[{x%27,y%27,z%27}]%20=%20[{\frac{dx(t)}{dt},\frac{dy(t)}{dt},\frac{dz(t)}{dt}}]" alt="fig 2" /></p> <p><a href="http://steve.hollasch.net/cgindex/curves/cbezarclen.html" rel="nofollow">(see the rest)</a></p> <p>Probably, you'd have t<em>0 = 0, t</em>1 = 1.0, and dz(t) = 0 (2d plane).</p> http://stackoverflow.com/questions/10477/equidistant-points-across-bezier-curves/855177#855177 1 Answer by J. Peterson for Equidistant points across Bezier curves J. Peterson 2009-05-12T22:23:58Z 2009-05-12T22:23:58Z <p>This is called "arc length" parameterization. I wrote a paper about this several years ago:</p> <p><a href="http://www.saccade.com/writing/graphics/RE-PARAM.PDF" rel="nofollow">http://www.saccade.com/writing/graphics/RE-PARAM.PDF</a></p> <p>The idea is to pre-compute a "parameterization" curve, and evaluate the curve through that.</p>