vote up 2 vote down star
1

In particular, I need a way to represent a curve/spline that passes through a set of known 3D points, and a way of finding other points on the curve/spline, by subdivision/interpolation.

For example, if I have a set of points P0 to PN, I want to find 100 points between P0 and P1 that are on a spline that passes through P0 and P1.

I see that Java3D's KBRotPosScaleSplinePathInterpolator performs such a calculation, but it is tied to that API's scenegraph model and I do not see how to return the values I need.

flag

77% accept rate

3 Answers

vote up 2 vote down

You're looking for something like a Catmull Rom spline. The reality is that the math just isn't all that hard to deal with (some vector-matrix multiplications). My recommendation is that you just implement the spline that you really need in code.

Quoting from that article:

The points that define a spline are known as "Control Points". One of the features of the Catmull-Rom spline is that the specified curve will pass through all of the control points - this is not true of all types of splines.

An illustration of the Catmull-Rom spline passing through all control points.

To calculate a point on the curve, two points on either side of the desired point are required, as shown on the left. The point is specified by a value t that signifies the portion of the distance between the two nearest control points.

link|flag
vote up 1 vote down

For anyone struggling with the maths behind curves, you may find this useful, in particular the images below. The idea is simple:

Let t loop from 0.0 to 1.0.

For each pair of points in the grey set, calculate a point a fraction of the way in between them (using t). These points are shown in green.

For each pair of points in the green set, calculate a point a fraction of the way in between them (using t). This point is shown in black.

For the different values of t, the black point will be a different line along a curve.

The second image shows the same process repeated with an extra point and an extra level of interpolation.

I found this much easier to understand, implement, and extend to 3 dimensions, than any other option I found.

approximating a curve using linear interpolation approximating a curve using linear interpolation

link|flag
Yes, this is called the Bezier spline. The problem with this spline comes up if / when you need a curve that passes from P0 through P1, P2 and then also hits P3. As you can see, P1 and P2 are control points for the Bezier spline but the curve never touches them. The Catmull-Rom spline is similar to this except that will pass through ever control point. – Bob Cross Aug 6 at 0:45
vote up 0 vote down

There's no built-in library that I'm aware of. Source

link|flag

Your Answer

Get an OpenID
or

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