Creates a Hermite spline with default tangency at its endpoints.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 26.4.0.0 (26.4.0.0)
Syntax
C#
public static HermiteSpline Create(
IList<XYZ> controlPoints,
bool periodic
)
Parameters
- controlPoints IList<XYZ>
-
The control points of the Hermite spline.
- periodic Boolean
-
True if the Hermite spline is to be periodic, false otherwise.
Return Value
HermiteSpline
The new HermiteSpline object.
Exceptions
Remarks
The tangents at the ends of the spline are computed from the control points.
See Also
Reference