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

Invoke.PathSelfIntersections

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

Namespace:Avl
Assembly:AvlNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inPathAvl.PathInput path.
outSelfIntersectionsSystem.Collections.Generic.List<Avl.Point2D>
outFirstSegmentIndicesAtl.Optional<System.Collections.Generic.List<int>>First indices of the segments of the path which generate found intersection points.
outSecondSegmentIndicesAtl.Optional<System.Collections.Generic.List<int>>Second indices of the segments of the path which generate found intersection points.
outIsSelfIntersectingAtl.Optional<bool>

See also