Home | History | Annotate | Download | only in animation

Lines Matching defs:Scale

41  * you can add some keyFrames for a given time or a given keyFrameIndex, for translation rotation and scale.
67 Translation, Rotation, Scale;
310 * Adds a key frame for the given scale at the given time
312 * @param scale the scale to use for this keyFrame
314 public void addTimeScale(float time, Vector3f scale) {
315 addKeyFrameScale((int) (time / tpf), scale);
319 * Adds a key frame for the given scale at the given keyFrame index
321 * @param scale the scale to use for this keyFrame
323 public void addKeyFrameScale(int keyFrameIndex, Vector3f scale) {
325 s.set(scale);
347 * returns the scale for a given frame index
348 * creates the scale if it doesn't exists
350 * @return the scale
390 interpolate(keyFramesScale, Type.Scale);
436 case Scale:
454 case Scale: