SplitPointsByPlane


Separates the points being on one side of the input plane from the others.

Syntax

C++
C#
Python
 
def SplitPointsByPlane(
	inPoints: list[Point3D],
	inPlane: Plane3D,
	/
)
-> (
	outPoints1: list[Point3D],
	outPoints2: list[Point3D]
)

Parameters

Name Type Default Description
Input value inPoints list[Point3D] Input points
Input value inPlane Plane3D Plane used for splitting
Output value outPoints1 list[Point3D] Points with positive signed distance to the input plane
Output value outPoints2 list[Point3D] Points with negative signed distance to the input plane