You are here: Start » FIL.NET » Invoke.SplitPointsByLine

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
inPointsSystem.Collections.Generic.List<Fil.Point2D>Input points.
inLineFil.Line2DLine used for splitting.
outPoints1System.Collections.Generic.List<Fil.Point2D>Points with positive signed distance to the input line.
outPoints2System.Collections.Generic.List<Fil.Point2D>Points with negative signed distance to the input line.

See also