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

Invoke.PathLineIntersections

Computes the common points of a path and a line.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void PathLineIntersections
(
	Fil.Path inPath,
	Fil.Line2D inLine,
	List<Fil.Point2D> outIntersectionPoints,
	Optional<List<int>> outSegmentIndices
)

Parameters

Name Type Range Default Description
inPathFil.PathInput path.
inLineFil.Line2DInput line.
outIntersectionPointsSystem.Collections.Generic.List<Fil.Point2D>Intersections between the path and the line.
outSegmentIndicesFtl.Optional<System.Collections.Generic.List<int>>Indices of the segments of the path which generate found intersection points.

See also