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

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DSpline.java34 private float curveTension = 0.5f; field in class:Spline
52 * @param curveTension the tension of the spline
55 public Spline(SplineType splineType, Vector3f[] controlPoints, float curveTension, boolean cycle) { argument
64 this.curveTension = curveTension;
81 * @param curveTension the tension of the spline
84 public Spline(SplineType splineType, List<Vector3f> controlPoints, float curveTension, boolean cycle) { argument
90 this.curveTension = curveTension;
219 CRcontrolPoints.get(i + 1), CRcontrolPoints.get(i + 2), CRcontrolPoints.get(i + 3), 0, 1, curveTension);
290 setCurveTension(float curveTension) argument
[all...]
H A DFastMath.java364 * @param curveTension the curve tension
367 public static float getCatmullRomP1toP2Length(Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, float startRange, float endRange, float curveTension) { argument
373 FastMath.interpolateCatmullRom(startRange, curveTension, p0, p1, p2, p3, start);
377 FastMath.interpolateCatmullRom(endRange, curveTension, p0, p1, p2, p3, end);
379 Vector3f middle = FastMath.interpolateCatmullRom(middleValue, curveTension, p0, p1, p2, p3);
385 l1 = getCatmullRomP1toP2Length(p0, p1, p2, p3, startRange, middleValue, curveTension);
386 l2 = getCatmullRomP1toP2Length(p0, p1, p2, p3, middleValue, endRange, curveTension);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DMotionPath.java326 * @param curveTension
328 public void setCurveTension(float curveTension) { argument
329 spline.setCurveTension(curveTension);

Completed in 187 milliseconds