Class NurbsSurface
java.lang.Object
com.tempestasludi.processing.nurbs.Nurbs
com.tempestasludi.processing.nurbs.NurbsSurface
A nurbs surface with two parameters (s and t).
-
Constructor Summary
ConstructorsConstructorDescriptionNurbsSurface
(PVector[][] points) Creates a new nurbs surface with degreespoints.length - 1
andpoints[0].length - 1
, in which every point has the same weight.NurbsSurface
(PVector[][] points, float[][] weights) Creates a new nurbs with degreespoints.length - 1
andpoints[0].length - 1
with the given base points and weights.NurbsSurface
(PVector[][] points, float[][] weights, float[] sKnotVector, float[] tKnotVector) Creates a new nurbs surface with the given points, weights and knot vectors.NurbsSurface
(PVector[][] points, float[][] weights, int sDegree, int tDegree) Creates a new nurbs surface of the given degrees with the given base points and weights.NurbsSurface
(PVector[][] points, int sDegree, int tDegree) Creates a new nurbs surface of the given degrees in which every point has the same weight. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Draws the surface with approximately the given number of steps for each parameter.void
Draws the surface with approximately the given number of steps for each parameter.evaluate
(float s, float t) Gives the value of the surface at s=s
and t=t
.evaluate
(float s, int sKnot, float t, int tKnot) Gives the value of the surface at s=s
and t=t
withs
in knot spansKnot
andt
in knot spantKnot
.void
void
void
setWeight
(int sIndex, int tIndex, float weight) void
setWeights
(float[][] weights)
-
Constructor Details
-
NurbsSurface
Creates a new nurbs surface with degreespoints.length - 1
andpoints[0].length - 1
, in which every point has the same weight.- Parameters:
points
- The base points
-
NurbsSurface
Creates a new nurbs surface of the given degrees in which every point has the same weight.- Parameters:
points
- The base pointssDegree
- The degree of the surface in the first parametertDegree
- The degree of the surface in the second parameter
-
NurbsSurface
Creates a new nurbs with degreespoints.length - 1
andpoints[0].length - 1
with the given base points and weights.- Parameters:
points
- The base pointsweights
- The point weights
-
NurbsSurface
Creates a new nurbs surface of the given degrees with the given base points and weights.- Parameters:
points
- The base pointssDegree
- The degree of the surface in the first parametertDegree
- The degree of the surface in the second parameter
-
NurbsSurface
public NurbsSurface(PVector[][] points, float[][] weights, float[] sKnotVector, float[] tKnotVector) Creates a new nurbs surface with the given points, weights and knot vectors.- Parameters:
points
- The base pointsweights
- The point weightssKnotVector
- The knot vector for the first parametertKnotVector
- The knot vector for the second parameter
-
-
Method Details
-
draw
Draws the surface with approximately the given number of steps for each parameter.- Parameters:
g
- The graphics context to draw withsteps
- The number of steps used for each parameter
-
draw
Draws the surface with approximately the given number of steps for each parameter.- Parameters:
g
- The graphics context to draw withsSteps
- The number of steps used for the first parametertSteps
- The number of steps used for the second parameter
-
evaluate
Gives the value of the surface at s=s
and t=t
. -
evaluate
Gives the value of the surface at s=s
and t=t
withs
in knot spansKnot
andt
in knot spantKnot
. -
setPoint
-
setPoints
-
setWeight
public void setWeight(int sIndex, int tIndex, float weight) -
setWeights
public void setWeights(float[][] weights)
-