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
Input value inPlane Plane3D
Output value outAngleXY float
Output value outAngleXZ float
Output value outAngleYZ float
Output value outPointOnPlane Point3D | None None Projection of the beginning of the coordinate axes on the input plane