public class Nurbs extends ColladaElement
The NURBS. Describes a NURBS curve in 3D space.
Constructor and Description |
---|
Nurbs()
Initializes a new instance of the
Nurbs class. |
Modifier and Type | Method and Description |
---|---|
boolean |
getClosed()
Gets or sets a value indicating whether curve is closed.
|
ControlVertices |
getControlVertices()
Gets or sets the control vertices.
|
long |
getDegree()
Gets or sets the degree.
|
Extra[] |
getExtra()
Gets or sets the extra.
|
Source[] |
getSource()
Gets or sets the source.
|
void |
setClosed(boolean value)
Gets or sets a value indicating whether curve is closed.
|
void |
setControlVertices(ControlVertices value)
Gets or sets the control vertices.
|
void |
setDegree(long value)
Gets or sets the degree.
|
void |
setExtra(Extra[] value)
Gets or sets the extra.
|
void |
setSource(Source[] value)
Gets or sets the source.
|
public Nurbs()
Initializes a new instance of the Nurbs
class.
public final Source[] getSource()
Gets or sets the source.
public final void setSource(Source[] value)
Gets or sets the source.
public final ControlVertices getControlVertices()
Gets or sets the control vertices. The control vertices element must occur exactly one time. It is used to describe the CVs of the spline.
public final void setControlVertices(ControlVertices value)
Gets or sets the control vertices. The control vertices element must occur exactly one time. It is used to describe the CVs of the spline.
public final Extra[] getExtra()
Gets or sets the extra.
public final void setExtra(Extra[] value)
Gets or sets the extra.
public final long getDegree()
Gets or sets the degree. Specifies the degree of the NURBS curve.
public final void setDegree(long value)
Gets or sets the degree. Specifies the degree of the NURBS curve.
public final boolean getClosed()
Gets or sets a value indicating whether curve is closed. Specifies whether a NURBS curve is closed. The default is false. Optional.
public final void setClosed(boolean value)
Gets or sets a value indicating whether curve is closed. Specifies whether a NURBS curve is closed. The default is false. Optional.