HomeSort by relevance Sort by last modified time
    Searched full:extrapolatelinear (Results 1 - 1 of 1) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 168 public static float extrapolateLinear(float scale, float startValue, float endValue) {
186 public static Vector3f extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) {
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) {
210 return extrapolateLinear(scale, startValue, endValue, null);
    [all...]

Completed in 28 milliseconds