HomeSort by relevance Sort by last modified time
    Searched refs:interpolateLinear (Results 1 - 9 of 9) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 106 public static float interpolateLinear(float scale, float startValue, float endValue) {
132 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) {
136 store.x = interpolateLinear(scale, startValue.x, endValue.x);
137 store.y = interpolateLinear(scale, startValue.y, endValue.y);
138 store.z = interpolateLinear(scale, startValue.z, endValue.z);
154 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue) {
155 return interpolateLinear(scale, startValue, endValue, null);
160 * if scale is between 0 and 1 this method returns the same result as interpolateLinear
177 * if scale is between 0 and 1 this method returns the same result as interpolateLinear
191 // return interpolateLinear(scale, startValue, endValue, store)
    [all...]
Spline.java 264 FastMath.interpolateLinear(value, controlPoints.get(currentControlPoint), controlPoints.get(currentControlPoint + 1), store);
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
ChaseCamera.java 392 rotation = FastMath.interpolateLinear(trailingLerpFactor, rotation, targetRotation);
405 distance = FastMath.interpolateLinear(distanceLerpFactor, distance, targetDistance);
415 distance = FastMath.interpolateLinear(distanceLerpFactor, distance, targetDistance);
425 rotation = FastMath.interpolateLinear(rotationLerpFactor, rotation, targetRotation);
435 vRotation = FastMath.interpolateLinear(vRotationLerpFactor, vRotation, targetVRotation);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
PositionTrack.java 93 Vector3f pos = FastMath.interpolateLinear(value, startPosition, endPosition);
ScaleTrack.java 93 spatial.setLocalScale(FastMath.interpolateLinear(value, startScale, endScale));
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 430 translations[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[key]);
437 scales[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[key]);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java     [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java 368 Vector3f store = FastMath.interpolateLinear(percentOnSegment,
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 955 p.size = FastMath.interpolateLinear(b, startSize, endSize);
    [all...]

Completed in 242 milliseconds