PointToPlaneDistance3D


Measures the distance between a 3D point and a plane.

Syntax

C++
C#
Python
 
def PointToPlaneDistance3D(
	inPoint3D: Point3D,
	inPlane: Plane3D,
	inResolution: float,
	/,
	*,
	outConnectingSegment3D: Segment3D | None = None
)
-> (
	outDistance: float,
	outSignedDistance: float
)

Parameters

Name Type Range Default Description
Input value inPoint3D Point3D
Input value inPlane Plane3D
Input value inResolution float 0.0 - Number of real-world units per one pixel
Output value outDistance float
Output value outConnectingSegment3D Segment3D | None None
Output value outSignedDistance float