OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CurveAndSurfaceMath
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/math/
CurveAndSurfaceMath.java
10
public class
CurveAndSurfaceMath
{
16
private
CurveAndSurfaceMath
() {}
39
float val = weights[i] *
CurveAndSurfaceMath
.computeBaseFunctionValue(i, nurbSpline.getBasisFunctionDegree(), u, knots);
75
*
CurveAndSurfaceMath
.computeBaseFunctionValue(i, basisVFunctionDegree, v, knots[1])
76
*
CurveAndSurfaceMath
.computeBaseFunctionValue(j, basisUFunctionDegree, u, knots[0]);
128
CurveAndSurfaceMath
.computeBaseFunctionValue(i, k - 1, t, knots)
130
CurveAndSurfaceMath
.computeBaseFunctionValue(i + 1, k - 1, t, knots);
Spline.java
119
CurveAndSurfaceMath
.prepareNurbsKnots(knots, basisFunctionDegree);
270
CurveAndSurfaceMath
.interpolateNurbs(value, this, store);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Surface.java
3
import com.jme3.math.
CurveAndSurfaceMath
;
49
CurveAndSurfaceMath
.prepareNurbsKnots(nurbKnots[0], basisUFunctionDegree);
52
CurveAndSurfaceMath
.prepareNurbsKnots(nurbKnots[1], basisVFunctionDegree);
96
CurveAndSurfaceMath
.interpolate(u, v, controlPoints, knots, basisUFunctionDegree, basisVFunctionDegree, interpolationResult);
Completed in 496 milliseconds