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