OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCatmullRomP1toP2Length
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java
367
public static float
getCatmullRomP1toP2Length
(Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, float startRange, float endRange, float curveTension) {
385
l1 =
getCatmullRomP1toP2Length
(p0, p1, p2, p3, startRange, middleValue, curveTension);
386
l2 =
getCatmullRomP1toP2Length
(p0, p1, p2, p3, middleValue, endRange, curveTension);
[
all
...]
Spline.java
218
l = FastMath.
getCatmullRomP1toP2Length
(CRcontrolPoints.get(i),
Completed in 54 milliseconds