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

Invoke.SplitPointsByPlane

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

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

See also