Home | History | Annotate | Download | only in animation

Lines Matching defs:scales

32      * Scales of the track. 

34 private CompactVector3Array scales;
53 * @param scales
57 Quaternion[] rotations, Vector3f[] scales) {
58 setKeyframes(times, translations, rotations, scales);
84 if (scales != null) {
85 scales.get(0, tempS);
92 if (scales != null) {
93 scales.get(lastFrame, tempS);
110 if (scales != null) {
111 scales.get(startFrame, tempS);
117 if (scales != null) {
118 scales.get(endFrame, tempS2);
129 if (scales != null) {
135 * Set the translations, rotations and scales for this track.
143 * @param scales
147 Quaternion[] rotations, Vector3f[] scales) {
165 if (scales != null) {
166 assert times.length == scales.length;
167 this.scales = new CompactVector3Array();
168 this.scales.add(scales);
169 this.scales.freeze();
181 * @return the array of scales for this track
184 return scales == null ? null : scales.toObjectArray();
231 oc.write(scales, "scales", null);
240 scales = (CompactVector3Array) ic.readSavable("scales", null);