Searched defs:interpolateLinear (Results 1 - 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java106 public static float interpolateLinear(float scale, float startValue, float endValue) { method in class:FastMath
132 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) { method in class:FastMath
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) { method in class:FastMath
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(scal
[all...]

Completed in 92 milliseconds