NurbsSurfaceData
Description:
A class used to represent the definition of a NURBS surface.
A class used to represent the definition of a NURBS surface.
Inheritance Hierarchy:
System.Object
Autodesk.Revit.DB.NurbsSurfaceData
System.Object
Autodesk.Revit.DB.NurbsSurfaceData
public class NurbsSurfaceData : IDisposable
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| NurbsSurfaceData(NurbsSurfaceData) | None | Copy constructor. |
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| Create(Int32, Int32, IList<Double>, IList<Double>, IList<XYZ>, IList<Double>, Boolean) | NurbsSurfaceData | ||
| Dispose() | None | Releases all resources used by the NurbsSurfaceData | |
| Equals | None | Determines whether the specified object is equal to the current object. (Inherited from Object ) | Object |
| GetControlPoint(Int32) | XYZ | Get the list of control points. | |
| GetControlPoints() | IList<XYZ> | Get the list of control points. | |
| GetHashCode | None | Serves as the default hash function. (Inherited from Object ) | Object |
| GetKnotsU() | IList<Double> | Get the list of knots in the u-direction. | |
| GetKnotsV() | IList<Double> | Get the list of knots in the v-direction. | |
| GetKnotU(Int32) | Double | Get the knot in the u-direction. | |
| GetKnotV(Int32) | Double | Get the knot in the v-direction. | |
| GetNumberOfControlPoints() | Int32 | Get the number of control points. | |
| GetNumberOfKnotsU() | Int32 | Get the number of knots in the u-direction. | |
| GetNumberOfKnotsV() | Int32 | Get the number of knots in the v-direction. | |
| GetNumberOfWeights() | Int32 | Get the number of weights. | |
| GetType | None | Gets the Type of the current instance. (Inherited from Object ) | Object |
| GetWeight(Int32) | Double | Get the weight. | |
| GetWeights() | IList<Double> | Get the list of weights. | |
| IsValid() | Boolean | Check if the object contains a valid NurbsSurfaceData. | |
| ToString | None | Returns a string that represents the current object. (Inherited from Object ) | Object |
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| DegreeU | int | The degree of the spline in the u-direction. | |
| DegreeV | int | The degree of the spline in the v-direction. | |
| IsRational | bool | Tells if the spline is rational or not. If it is true (rational), then the NURBS is a piecewise rational polynomial function. If it is false (non-rational), then the NURBS is a piecewise polynomial function. | |
| IsValidObject | Boolean | Specifies whether the .NET object represents a valid Revit entity. | |
| ReverseOrientation | bool | If true, the surface's orientation is opposite to the canonical parametric orientation, otherwise it is the same. The canonical parametric orientation is a counter-clockwise sense of rotation in the uv-parameter plane. Extrinsically, the oriented normal vector for the canonical parametric orientation points in the direction of the cross product dS/du x dS/dv, which S(u, v) is the parameterized surface. |