You are here: Start » FIL.NET » Function Reference » Path » Path Combinators » FIL.PathLineIntersections

FIL.PathLineIntersections

Computes the common points of a path and a line.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
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.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in PathLineIntersections.

Function Overrides

See also