Home
last modified time | relevance | path

Searched refs:interpolateLinear (Results 1 – 8 of 8) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
DFastMath.java106 public static float interpolateLinear(float scale, float startValue, float endValue) { in interpolateLinear() method in FastMath
132 …public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vect… in interpolateLinear() method in FastMath
136 store.x = interpolateLinear(scale, startValue.x, endValue.x); in interpolateLinear()
137 store.y = interpolateLinear(scale, startValue.y, endValue.y); in interpolateLinear()
138 store.z = interpolateLinear(scale, startValue.z, endValue.z); in interpolateLinear()
154 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue) { in interpolateLinear() method in FastMath
155 return interpolateLinear(scale, startValue, endValue, null); in interpolateLinear()
DSpline.java264 …FastMath.interpolateLinear(value, controlPoints.get(currentControlPoint), controlPoints.get(curren… in interpolate()
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DChaseCamera.java392 … rotation = FastMath.interpolateLinear(trailingLerpFactor, rotation, targetRotation); in updateCamera()
405 … distance = FastMath.interpolateLinear(distanceLerpFactor, distance, targetDistance); in updateCamera()
415 … distance = FastMath.interpolateLinear(distanceLerpFactor, distance, targetDistance); in updateCamera()
425 … rotation = FastMath.interpolateLinear(rotationLerpFactor, rotation, targetRotation); in updateCamera()
435 … vRotation = FastMath.interpolateLinear(vRotationLerpFactor, vRotation, targetVRotation); in updateCamera()
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DAnimationFactory.java430 …translations[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[ke… in interpolate()
437 … scales[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[key]); in interpolate()
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
DScaleTrack.java93 spatial.setLocalScale(FastMath.interpolateLinear(value, startScale, endScale)); in onUpdate()
DPositionTrack.java93 Vector3f pos = FastMath.interpolateLinear(value, startPosition, endPosition); in onUpdate()
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
DParticleEmitter.java955 p.size = FastMath.interpolateLinear(b, startSize, endSize); in updateParticle()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
DCurvesHelper.java368 Vector3f store = FastMath.interpolateLinear(percentOnSegment, in getTaperScale()