Creates a Plane object defined by a local frame of reference.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 18.0.0.0 (18.2.0.13)
Since:
2017
Syntax
C# |
---|
public static Plane Create(
Frame frameOfReference
) |
Visual Basic |
---|
Public Shared Function Create ( _
frameOfReference As Frame _
) As Plane |
Visual C++ |
---|
public:
static Plane^ Create(
Frame^ frameOfReference
) |
Parameters
- frameOfReference
- Type: Autodesk.Revit.DB..::..Frame
frameOfReference is an orthonormal frame that defines a local coordinate system for the plane being constructed.
- Frame.Origin is a point on plane.
- Frame.BasisZ defines the plane's normal, while Frame.BasisX and Frame.BasisY are orthogonal to the normal.
- The frame may be either left-handed or right-handed (see Frame.IsRightHanded).
Remarks
Exceptions
See Also