OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:curveTension
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/math/
Spline.java
34
private float
curveTension
= 0.5f;
52
* @param
curveTension
the tension of the spline
55
public Spline(SplineType splineType, Vector3f[] controlPoints, float
curveTension
, boolean cycle) {
64
this.
curveTension
=
curveTension
;
81
* @param
curveTension
the tension of the spline
84
public Spline(SplineType splineType, List<Vector3f> controlPoints, float
curveTension
, boolean cycle) {
90
this.
curveTension
=
curveTension
;
219
CRcontrolPoints.get(i + 1), CRcontrolPoints.get(i + 2), CRcontrolPoints.get(i + 3), 0, 1,
curveTension
);
[
all
...]
FastMath.java
364
* @param
curveTension
the curve tension
367
public static float getCatmullRomP1toP2Length(Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, float startRange, float endRange, float
curveTension
) {
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
);
[
all
...]
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
MotionPath.java
326
* @param
curveTension
328
public void setCurveTension(float
curveTension
) {
329
spline.setCurveTension(
curveTension
);
Completed in 39 milliseconds