Plane3DOrientation
Computes the orientation of a plane as angles in the range from 0 to 180 between the plane and coordinate planes.
Syntax
C++
C#
Python
def Plane3DOrientation( inPlane: Plane3D, /, *, outPointOnPlane: Point3D | None = None ) -> ( outAngleXY: float, outAngleXZ: float, outAngleYZ: float )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPlane | Plane3D | ||
![]() |
outAngleXY | float | ||
![]() |
outAngleXZ | float | ||
![]() |
outAngleYZ | float | ||
![]() |
outPointOnPlane | Point3D | None | None | Projection of the beginning of the coordinate axes on the input plane |


