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

FIL.PathSegmentIntersections

Computes the common points of a path and a segment.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void PathSegmentIntersections
(
	FilNet.Path inPath,
	FilNet.Segment2D inSegment,
	IList<FilNet.Point2D> outIntersectionPoints,
	NullableRef<List<int>> outSegmentIndices
)

Parameters

Name Type Range Default Description
inPathFilNet.PathInput path.
inSegmentFilNet.Segment2DInput segment.
outIntersectionPointsSystem.Collections.Generic.IList<FilNet.Point2D>Intersections between the path and the segment.
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