public class NurbsSurface extends ColladaElement
The NURBS surface. Describes a NURBS surface in 3D space.
Constructor and Description |
---|
NurbsSurface()
Initializes a new instance of the
NurbsSurface class. |
Modifier and Type | Method and Description |
---|---|
boolean |
getClosedU()
Gets or sets a value indicating whether is closed u.
|
boolean |
getClosedV()
Gets or sets a value indicating whether is closed v.
|
ControlVertices |
getControlVertices()
Gets or sets the control vertices.
|
long |
getDegreeU()
Gets or sets the degree u.
|
long |
getDegreeV()
Gets or sets the degree v.
|
Extra[] |
getExtra()
Gets or sets the extra.
|
Source[] |
getSource()
Gets or sets the source.
|
void |
setClosedU(boolean value)
Gets or sets a value indicating whether is closed u.
|
void |
setClosedV(boolean value)
Gets or sets a value indicating whether is closed v.
|
void |
setControlVertices(ControlVertices value)
Gets or sets the control vertices.
|
void |
setDegreeU(long value)
Gets or sets the degree u.
|
void |
setDegreeV(long value)
Gets or sets the degree v.
|
void |
setExtra(Extra[] value)
Gets or sets the extra.
|
void |
setSource(Source[] value)
Gets or sets the source.
|
public NurbsSurface()
Initializes a new instance of the NurbsSurface
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.
public final void setControlVertices(ControlVertices value)
Gets or sets the control vertices.
public final Extra[] getExtra()
Gets or sets the extra.
public final void setExtra(Extra[] value)
Gets or sets the extra.
public final long getDegreeU()
Gets or sets the degree u. Specifies the degree of the NURBS curve for the u direction. Required.
public final void setDegreeU(long value)
Gets or sets the degree u. Specifies the degree of the NURBS curve for the u direction. Required.
public final boolean getClosedU()
Gets or sets a value indicating whether is closed u. Specifies whether a NURBS curve is closed for the u direction. The default is false. Optional.
public final void setClosedU(boolean value)
Gets or sets a value indicating whether is closed u. Specifies whether a NURBS curve is closed for the u direction. The default is false. Optional.
public final long getDegreeV()
Gets or sets the degree v. Specifies the degree of the NURBS curve for the v direction. Required.
public final void setDegreeV(long value)
Gets or sets the degree v. Specifies the degree of the NURBS curve for the v direction. Required.
public final boolean getClosedV()
Gets or sets a value indicating whether is closed v. Specifies whether a NURBS curve is closed for the v direction. The default is false. Optional.
public final void setClosedV(boolean value)
Gets or sets a value indicating whether is closed v. Specifies whether a NURBS curve is closed for the v direction. The default is false. Optional.