Class NurbsCurve
java.lang.Object
com.tempestasludi.processing.nurbs.Nurbs
com.tempestasludi.processing.nurbs.NurbsCurve
-
Constructor Summary
ConstructorsConstructorDescriptionNurbsCurve
(PVector[] points) Creates a new nurbs of degreepoints.length - 1
in which every point has the same weight.NurbsCurve
(PVector[] points, float[] weights) Creates a new nurbs of degreepoints.length - 1
with the given base points and weights.NurbsCurve
(PVector[] points, float[] weights, float[] knotVector) Creates a new nurbs with the given points, weights and knot vector.NurbsCurve
(PVector[] points, float[] weights, int degree) Creates a new nurbs of the given degree with the given base points and weights.NurbsCurve
(PVector[] points, int degree) Creates a new nurbs of the given degree in which every point has the same weight. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Draws the curve with approximately the given number of steps.evaluate
(float t) Gives the value of the nurbs at t=t
.evaluate
(float t, int knot) Gives the value of the nurbs at t=t
witht
in knot spanknot
.void
void
void
setWeight
(int index, float weight) void
setWeights
(float[] weights)
-
Constructor Details
-
NurbsCurve
Creates a new nurbs of degreepoints.length - 1
in which every point has the same weight.- Parameters:
points
- The base points
-
NurbsCurve
Creates a new nurbs of the given degree in which every point has the same weight.- Parameters:
points
- The base pointsdegree
- The degree of the curve
-
NurbsCurve
Creates a new nurbs of degreepoints.length - 1
with the given base points and weights.- Parameters:
points
- The base pointsweights
- The point weights
-
NurbsCurve
Creates a new nurbs of the given degree with the given base points and weights.- Parameters:
points
- The base pointsweights
- The point weightsdegree
- The degree of the curve
-
NurbsCurve
Creates a new nurbs with the given points, weights and knot vector.- Parameters:
points
- The base pointsweights
- The point weightsknotVector
- The knot vector
-
-
Method Details
-
draw
Draws the curve with approximately the given number of steps.- Parameters:
g
- The graphics context to draw withsteps
- The number of steps to subdivide the curve into
-
evaluate
Gives the value of the nurbs at t=t
. -
evaluate
Gives the value of the nurbs at t=t
witht
in knot spanknot
. -
setPoint
-
setPoints
-
setWeight
public void setWeight(int index, float weight) -
setWeights
public void setWeights(float[] weights)
-