Home
last modified time | relevance | path

Searched refs:CRcontrolPoints (Results 1 – 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
DSpline.java33 private List<Vector3f> CRcontrolPoints; field in Spline
124 if (CRcontrolPoints == null) { in initCatmullRomWayPoints()
125 CRcontrolPoints = new ArrayList<Vector3f>(); in initCatmullRomWayPoints()
127 CRcontrolPoints.clear(); in initCatmullRomWayPoints()
132 CRcontrolPoints.add(list.get(list.size() - 2)); in initCatmullRomWayPoints()
134 CRcontrolPoints.add(list.get(0).subtract(list.get(1).subtract(list.get(0)))); in initCatmullRomWayPoints()
139 CRcontrolPoints.add(vector3f); in initCatmullRomWayPoints()
142 CRcontrolPoints.add(list.get(1)); in initCatmullRomWayPoints()
144 CRcontrolPoints.add(list.get(nb).add(list.get(nb).subtract(list.get(nb - 1)))); in initCatmullRomWayPoints()
218 l = FastMath.getCatmullRomP1toP2Length(CRcontrolPoints.get(i), in computeCatmulLength()
[all …]