You are here: Start » FIL.NET » FIS.PathLineIntersections Method

FIS.PathLineIntersections Method

Computes the common points of a path and a line.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void PathLineIntersections
(
	FilNet.Path inPath,
	FilNet.Line2D inLine,
	IList<FilNet.Point2D> outIntersectionPoints,
	NullableRef<List<int>> outSegmentIndices
)

Parameters

Name Type Range Default Description
inPathFilNet.PathInput path.
inLineFilNet.Line2DInput line.
outIntersectionPointsSystem.Collections.Generic.IList<FilNet.Point2D>Intersections between the path and the line.
outSegmentIndicesFilNet.NullableRef<System.Collections.Generic.List<int>>Indices of the segments of the path which generate found intersection points. Can be null to skip this parameter calculation.

Function Overrides

See also