Create a Hermite surface using a net of 3D points as input. Specify periodicity in U and V direction.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 26.4.0.0 (26.4.0.0)
Syntax
C#
public static HermiteSurface Create(
int nU,
int nV,
IList<XYZ> points,
bool periodicU,
bool periodicV
)
Parameters
- nU Int32
-
Number of points in U direction.
- nV Int32
-
Number of points in V direction.
- points IList<XYZ>
-
Array of points. Must contain nU*nV points.
- periodicU Boolean
-
Periodicity in U direction
- periodicV Boolean
-
Periodicity in V direction
Return Value
HermiteSurface
A Hermite surface object created from input data.
Exceptions
Remarks
Points form a net of nU * nV (less one each if periodic) 3D points.
See Also
Reference