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?
|
2
|
|
|
|
|
|
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: where: Probably, you'd have t0 = 0, t1 = 1.0, and dz(t) = 0 (2d plane). |
|||
|
|
|
|
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. |
||
|
|
