Creates a Surface object coincident with the surface of revolution defined by an axis and a profile curve.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.1.0.0 (26.1.0.34)
Syntax
C#
public static Surface Create( XYZ axisBasePoint, XYZ axisDirection, Curve profileCurve )
Parameters
- axisBasePoint XYZ
- The base point of the axis of revolution. Expected to lie within the Revit design limits IsWithinLengthLimits(XYZ).
- axisDirection XYZ
- The direction of the axis.
- profileCurve Curve
-
The profile curve, which should satisfy the following conditions:
- It is bounded and non-degenerate.
- It is co-planar with the axis of revolution.
- It lies on only one side of the axis.
- Only the end points of the profile curve can touch the axis.
Return Value
SurfaceThe created surface. Note that this surface may not be of type RevolvedSurface.
Exceptions
Exception | Condition |
---|---|
ArgumentException | The input point lies outside of Revit design limits. -or- The input profile curve is not valid to create a surface revolution around the given axis. |
ArgumentNullException | A non-optional argument was null |
ArgumentOutOfRangeException | axisDirection has zero length. |