Searched refs:scales (Results 1 - 14 of 14) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DBoneTrack.java58 private CompactVector3Array scales; field in class:BoneTrack
85 * @param scales the scale of the bone for each frame
87 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) { argument
89 this.setKeyframes(times, translations, rotations, scales);
116 * returns the array of scales for this track
120 return scales == null ? null : scales.toObjectArray();
162 * Set the translations, rotations and scales for this bone track
166 * @param scales the scale of the bone for each frame
168 public void setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) { argument
[all...]
H A DSpatialTrack.java34 private CompactVector3Array scales; field in class:SpatialTrack
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
56 SpatialTrack(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) argument
146 setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) argument
[all...]
H A DAnimationFactory.java138 * scales array for this animation
140 protected Vector3f[] scales; field in class:AnimationFactory
172 scales = new Vector3f[totalFrames];
392 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
437 scales[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[key]);
455 scales[j] = ((Vector3f) keyFrames[i]).clone();
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DCalculationBone.java27 private Vector3f[] scales; field in class:CalculationBone
38 this.scales = new Vector3f[boneFramesCount];
42 Arrays.fill(this.scales, 0, boneFramesCount, this.startScale);
58 this.scales = track.getScales();
107 if (scales != null) {
108 scales[frame].set(this.getLocalScale());
115 track.setKeyframes(track.getTimes(), translations, rotations, scales);
118 bone.setUserTransforms(translations[0], rotations[0], scales[0]);
H A DIpo.java139 Vector3f[] scales = new Vector3f[framesAmount + 1];
226 scales[index] = new Vector3f(scale[0], scale[1], scale[2]);
229 calculatedTrack = new SpatialTrack(times, translations, rotations, scales);
231 calculatedTrack = new BoneTrack(targetIndex, times, translations, rotations, scales);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DBlenderTrack.java66 * @return the array of scales for this track
96 * Set the translations, rotations and scales for this bone track
104 * @param scales
108 Quaternion[] rotations, Vector3f[] scales) {
110 boneTrack.setKeyframes(times, translations, rotations, scales);
112 spatialTrack.setKeyframes(times, translations, rotations, scales);
107 setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) argument
H A DConstraintSizeLike.java64 Vector3f[] scales = track.getScales();
65 int maxFrames = scales.length;
67 this.sizeLike(scales[frame], targetScale, ipo.calculateValue(frame));
69 track.setKeyframes(track.getTimes(), track.getTranslations(), track.getRotations(), scales);
H A DConstraintSizeLimit.java83 Vector3f[] scales = track.getScales();
84 int maxFrames = scales.length;
86 this.sizeLimit(scales[frame], ipo.calculateValue(frame));
88 track.setKeyframes(track.getTimes(), track.getTranslations(), track.getRotations(), scales);
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
H A DTestSpatialAnim.java60 Vector3f[] scales = new Vector3f[totalFrames];
67 scales[i] = Vector3f.UNIT_XYZ;
69 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DSkeletonLoader.java76 private ArrayList<Vector3f> scales = new ArrayList<Vector3f>(); field in class:SkeletonLoader
188 scales.add(scale);
190 scales.add(new Vector3f(1,1,1));
206 Vector3f[] scalesArray = scales.toArray(new Vector3f[scales.size()]);
217 scales.clear();
/external/jpeg/
H A Djddctmgr.c238 static const unsigned short scales[DCTSIZE2] = { local
253 ifmtbl[j] = (qtbl->quantval[i] * scales[i] + 2) >> 2;
/external/libvorbis/lib/
H A DMakefile.am16 registry.h scales.h window.h lookup.h lookup_data.h\
/external/qemu/distrib/jpeg-6b/
H A Djddctmgr.c238 static const unsigned short scales[DCTSIZE2] = { local
253 ifmtbl[j] = (qtbl->quantval[i] * scales[i] + 2) >> 2;
/external/opencv/cvaux/src/
H A Dcvhmm1d.cpp73 double* scales)
133 scales[t] = scale;

Completed in 1523 milliseconds