Home | History | Annotate | Download | only in math

Lines Matching refs:interpolateLinear

106     public static float interpolateLinear(float scale, float startValue, float endValue) {
132 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) {
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) {
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(scale, startValue, endValue, store);
201 * if scale is between 0 and 1 this method returns the same result as interpolateLinear