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

Invoke.PathPathIntersections

Computes the common points of two paths.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void PathPathIntersections
(
	Fil.Path inPath1,
	Fil.Path inPath2,
	List<Fil.Point2D> outIntersectionPoints,
	Optional<List<int>> outSegmentIndices1,
	Optional<List<int>> outSegmentIndices2
)

Parameters

Name Type Range Default Description
inPath1Fil.PathInput path.
inPath2Fil.PathInput path.
outIntersectionPointsSystem.Collections.Generic.List<Fil.Point2D>Intersections between the input paths.
outSegmentIndices1Ftl.Optional<System.Collections.Generic.List<int>>Indices of the segments of the first path which generate found intersection points.
outSegmentIndices2Ftl.Optional<System.Collections.Generic.List<int>>Indices of the segments of the second path which generate found intersection points.

See also