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