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 | |
|---|---|---|---|---|
![]() |
inPoints | list[Point3D] | Input points | |
![]() |
inPlane | Plane3D | Plane used for splitting | |
![]() |
outPoints1 | list[Point3D] | Points with positive signed distance to the input plane | |
![]() |
outPoints2 | list[Point3D] | Points with negative signed distance to the input plane |


