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

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

Completed in 102 milliseconds