Home
last modified time | relevance | path

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

/external/jmonkeyengine/engine/src/core/com/jme3/math/
DFastMath.java168 public static float extrapolateLinear(float scale, float startValue, float endValue) { in extrapolateLinear() method in FastMath
186 …public static Vector3f extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vect… in extrapolateLinear() method in FastMath
193 store.x = extrapolateLinear(scale, startValue.x, endValue.x); in extrapolateLinear()
194 store.y = extrapolateLinear(scale, startValue.y, endValue.y); in extrapolateLinear()
195 store.z = extrapolateLinear(scale, startValue.z, endValue.z); in extrapolateLinear()
209 public static Vector3f extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue) { in extrapolateLinear() method in FastMath
210 return extrapolateLinear(scale, startValue, endValue, null); in extrapolateLinear()