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

FIS.PathPathIntersections Method

Computes the common points of two paths.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void PathPathIntersections
(
	FilNet.Path inPath1,
	FilNet.Path inPath2,
	IList<FilNet.Point2D> outIntersectionPoints,
	NullableRef<List<int>> outSegmentIndices1,
	NullableRef<List<int>> outSegmentIndices2
)

Parameters

Name Type Range Default Description
inPath1FilNet.PathInput path.
inPath2FilNet.PathInput path.
outIntersectionPointsSystem.Collections.Generic.IList<FilNet.Point2D>Intersections between the input paths.
outSegmentIndices1FilNet.NullableRef<System.Collections.Generic.List<int>>Indices of the segments of the first path which generate found intersection points. Can be null to skip this parameter calculation.
outSegmentIndices2FilNet.NullableRef<System.Collections.Generic.List<int>>Indices of the segments of the second path which generate found intersection points. Can be null to skip this parameter calculation.

Function Overrides

See also