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


