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. 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?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

distance between P0 and P3 (in cubic form), yes, but I think you knew that, is straight forward.

Distance on a curve is just arc length:

fig 1

where:

fig 2

(see the rest)

Probably, you'd have t0 = 0, t1 = 1.0, and dz(t) = 0 (2d plane).

link|improve this answer
2  
This is how you find the arc length given the parameter, but finding equidistant points requires the inverse of this function. Getting from one to the other is not trivial. @Christian Romo: how did you do it? I mean, you can just use binary search, but that would be horribly slow (for what I'm trying to do, anyway). – CromTheDestroyer Nov 19 '10 at 4:18
feedback

This is called "arc length" parameterization. I wrote a paper about this several years ago:

http://www.saccade.com/writing/graphics/RE-PARAM.PDF

The idea is to pre-compute a "parameterization" curve, and evaluate the curve through that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.