You are here: Start » AVL.NET » Invoke.SplitPointsByPlane
Separates the points being on one side of the input plane from the others.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void SplitPointsByPlane ( List<Avl.Point3D> inPoints, Avl.Plane3D inPlane, List<Avl.Point3D> outPoints1, List<Avl.Point3D> outPoints2 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.List<Avl.Point3D> | Input points. | ||
![]() | inPlane | Avl.Plane3D | Plane used for splitting. | ||
![]() | outPoints1 | System.Collections.Generic.List<Avl.Point3D> | Points with positive signed distance to the input plane. | ||
![]() | outPoints2 | System.Collections.Generic.List<Avl.Point3D> | Points with negative signed distance to the input plane. |