HomeSort by relevance Sort by last modified time
    Searched defs:rotations (Results 1 - 12 of 12) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 57 private CompactQuaternionArray rotations; field in class:BoneTrack
72 * @param rotations the rotation of the bone for each frame
74 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations) {
76 this.setKeyframes(times, translations, rotations);
84 * @param rotations the rotation of the bone for each frame
87 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) {
89 this.setKeyframes(times, translations, rotations, scales);
108 * return the array of rotations of this track
112 return rotations.toObjectArray();
140 * Set the translations and rotations for this bone trac
274 Quaternion[] rotations = new Quaternion[tablesLength]; local
    [all...]
SpatialTrack.java 27 * Rotations of the track.
29 private CompactQuaternionArray rotations; field in class:SpatialTrack
51 * @param rotations
57 Quaternion[] rotations, Vector3f[] scales) {
58 setKeyframes(times, translations, rotations, scales);
80 if (rotations != null)
81 rotations.get(0, tempQ);
88 if (rotations != null)
89 rotations.get(lastFrame, tempQ);
106 if (rotations != null)
    [all...]
AnimationFactory.java 136 protected Quaternion[] rotations; field in class:AnimationFactory
171 rotations = new Quaternion[totalFrames];
224 * Use {@link addTimeRotationAngles(float time, float x, float y, float z)} instead that uses Euler angles rotations.<br> *
236 * Use {@link addKeyFrameRotationAngles(int keyFrameIndex, float x, float y, float z)} instead that uses Euler angles rotations.
392 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
434 rotations[j] = rot.slerp(((Rotation) keyFrames[i]).rotation, ((Rotation) keyFrames[key]).rotation, val);
452 rotations[j] = ((Quaternion) ((Rotation) keyFrames[i]).rotation).clone();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintRotLike.java 60 Quaternion[] rotations = track.getRotations(); local
61 int maxFrames = rotations.length;
64 rotations[frame].toAngles(angles);
65 this.rotLike(rotations[frame], angles, targetAngles, ipo.calculateValue(frame));
67 track.setKeyframes(track.getTimes(), track.getTranslations(), rotations, track.getScales()); local
ConstraintShrinkWrap.java 68 Quaternion[] rotations = track.getRotations(); local
86 track.setKeyframes(track.getTimes(), translations, rotations, track.getScales()); local
ConstraintRotLimit.java 71 // until blender 2.49 the rotations values were stored in degrees
88 Quaternion[] rotations = track.getRotations(); local
90 int maxFrames = rotations.length;
92 rotations[frame].toAngles(angles);
94 rotations[frame].fromAngles(angles);
96 track.setKeyframes(track.getTimes(), track.getTranslations(), rotations, track.getScales()); local
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 59 Quaternion[] rotations = new Quaternion[totalFrames]; local
66 rotations[i] = Quaternion.IDENTITY;
69 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_rotator.h 54 unsigned char rotations; member in struct:msm_rotator_img_info
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 75 private ArrayList<Quaternion> rotations = new ArrayList<Quaternion>(); field in class:SkeletonLoader
186 rotations.add(rotation);
205 Quaternion[] rotArray = rotations.toArray(new Quaternion[rotations.size()]);
216 rotations.clear();
243 rotations.clear();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
CalculationBone.java 26 private Quaternion[] rotations; field in class:CalculationBone
37 this.rotations = new Quaternion[boneFramesCount];
41 Arrays.fill(this.rotations, 0, boneFramesCount, this.startRotation);
57 this.rotations = track.getRotations();
105 rotations[frame].set(this.getLocalRotation());
115 track.setKeyframes(track.getTimes(), translations, rotations, scales); local
118 bone.setUserTransforms(translations[0], rotations[0], scales[0]);
Ipo.java 136 Quaternion[] rotations = new Quaternion[framesAmount + 1]; local
225 rotations[index] = spatialTrack ? new Quaternion().fromAngles(objectRotation) : new Quaternion(quaternionRotation[0], quaternionRotation[1], quaternionRotation[2], quaternionRotation[3]);
229 calculatedTrack = new SpatialTrack(times, translations, rotations, scales);
231 calculatedTrack = new BoneTrack(targetIndex, times, translations, rotations, scales);
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_rotator.h 40 unsigned char rotations; member in struct:msm_rotator_img_info

Completed in 174 milliseconds