Class TCBKeyFrame
- java.lang.Object
-
- com.sun.j3d.utils.behaviors.interpolators.TCBKeyFrame
-
public class TCBKeyFrame extends java.lang.ObjectThis class represents a Key Frame that can be used for Kochanek-Bartels (TCB) spline interpolation.- Since:
- Java3D 1.1
-
-
Constructor Summary
Constructors Constructor Description TCBKeyFrame(float k, int l, javax.vecmath.Point3f pos, javax.vecmath.Quat4f q, javax.vecmath.Point3f s, float t, float c, float b)Creates a key frame using the given inputs.TCBKeyFrame(TCBKeyFrame kf)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebugPrint(java.lang.String tag)Prints information comtained in this key frame
-
-
-
Constructor Detail
-
TCBKeyFrame
public TCBKeyFrame(TCBKeyFrame kf)
-
TCBKeyFrame
public TCBKeyFrame(float k, int l, javax.vecmath.Point3f pos, javax.vecmath.Quat4f q, javax.vecmath.Point3f s, float t, float c, float b)Creates a key frame using the given inputs.- Parameters:
k- knot value for this key framel- the linear flag (0 - Spline Interp, 1, Linear Interppos- the position at the key frameq- the rotations at the key frames- the scales at the key framet- tension (-1.0 < t < 1.0)c- continuity (-1.0 < c < 1.0)b- bias (-1.0 < b < 1.0)
-
-