vote up 2 vote down star
3

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?

flag

2 Answers

vote up 3 vote down check

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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