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

Invoke.PathSelfIntersections

Checks if a path has any self-intersections and computes all of them.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void PathSelfIntersections
(
	Fil.Path inPath,
	List<Fil.Point2D> outSelfIntersections,
	Optional<List<int>> outFirstSegmentIndices,
	Optional<List<int>> outSecondSegmentIndices,
	Optional<bool> outIsSelfIntersecting
)

Parameters

Name Type Range Default Description
inPathFil.PathInput path.
outSelfIntersectionsSystem.Collections.Generic.List<Fil.Point2D>
outFirstSegmentIndicesFtl.Optional<System.Collections.Generic.List<int>>First indices of the segments of the path which generate found intersection points.
outSecondSegmentIndicesFtl.Optional<System.Collections.Generic.List<int>>Second indices of the segments of the path which generate found intersection points.
outIsSelfIntersectingFtl.Optional<bool>

See also