|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ISplineInterpolator
Global interface for any Spline interpolator.
Method Summary | |
---|---|
BezierSpline |
interpolatePoints(KVector[] points)
returns a piecewise bezierspline. |
BezierSpline |
interpolatePoints(KVector[] points,
KVector startVec,
KVector endVec,
boolean tangentScale)
returns a piecewise bezierspline. |
BezierSpline |
interpolatePoints(LinkedList<KVector> points)
returns a piecewise bezierspline. |
BezierSpline |
interpolatePoints(LinkedList<KVector> points,
KVector startVec,
KVector endVec,
boolean tangentScale)
returns a piecewise bezierspline. |
Method Detail |
---|
BezierSpline interpolatePoints(KVector[] points)
points
- as an array, see implementing class if to prefer Vector or List implementation.
BezierSpline interpolatePoints(KVector[] points, KVector startVec, KVector endVec, boolean tangentScale)
points
- as an array, see implementing class if to prefer Vector or List implementation.startVec
- tangent vector specifying to head out of the first nodeendVec
- tangent vector specifying to head into the last nodetangentScale
- if true, the tangent is scaled depending on the distance to the next ctr point, if
false the tangent is used as passed
BezierSpline interpolatePoints(LinkedList<KVector> points)
points
- as an array, see implementing class if to prefer Vector or List implementation.
BezierSpline interpolatePoints(LinkedList<KVector> points, KVector startVec, KVector endVec, boolean tangentScale)
points
- as an array, see implementing class if to prefer Vector or List implementation.startVec
- tangent vector specifying to head out of the first nodeendVec
- tangent vector specifying to head into the last nodetangentScale
- if true, the tangent is scaled depending on the distance to the next ctr point, if
false the tangent is used as passed
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |