Home | History | Annotate | Download | only in math

Lines Matching refs:endRange

363      * @param endRange the end range on the segment (use 1)
367 public static float getCatmullRomP1toP2Length(Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, float startRange, float endRange, float curveTension) {
370 float middleValue = (startRange + endRange) * 0.5f;
376 if (endRange != 1) {
377 FastMath.interpolateCatmullRom(endRange, curveTension, p0, p1, p2, p3, end);
386 l2 = getCatmullRomP1toP2Length(p0, p1, p2, p3, middleValue, endRange, curveTension);