You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Spatial Transforms » FIL.SplitPointsByLine

FIL.SplitPointsByLine

Separates the points being on one side of the input line from the others.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void SplitPointsByLine
(
	IList<FilNet.Point2D> inPoints,
	FilNet.Line2D inLine,
	IList<FilNet.Point2D> outPoints1,
	IList<FilNet.Point2D> outPoints2
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<FilNet.Point2D>Input points.
inLineFilNet.Line2DLine used for splitting.
outPoints1System.Collections.Generic.IList<FilNet.Point2D>Points with positive signed distance to the input line.
outPoints2System.Collections.Generic.IList<FilNet.Point2D>Points with negative signed distance to the input line.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in SplitPointsByLine.

See also