You are here: Start » AVL.NET » 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 | |
|---|---|---|---|---|---|
![]()  | inPath | Avl.Path | Input path. | ||
![]()  | outSelfIntersections | System.Collections.Generic.List<Avl.Point2D> | |||
![]()  | outFirstSegmentIndices | Atl.Optional<System.Collections.Generic.List<int>> | First indices of the segments of the path which generate found intersection points. | ||
![]()  | outSecondSegmentIndices | Atl.Optional<System.Collections.Generic.List<int>> | Second indices of the segments of the path which generate found intersection points. | ||
![]()  | outIsSelfIntersecting | Atl.Optional<bool> | 


