You are here: Start » FIL.NET » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » FIL.SplitPointsByPlane

FIL.SplitPointsByPlane

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void SplitPointsByPlane
(
	IList<FilNet.Point3D> inPoints,
	FilNet.Plane3D inPlane,
	IList<FilNet.Point3D> outPoints1,
	IList<FilNet.Point3D> outPoints2
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<FilNet.Point3D>Input points.
inPlaneFilNet.Plane3DPlane used for splitting.
outPoints1System.Collections.Generic.IList<FilNet.Point3D>Points with positive signed distance to the input plane.
outPoints2System.Collections.Generic.IList<FilNet.Point3D>Points with negative signed distance to the input plane.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite plane on input in SplitPointsByPlane.

See also