You are here: Start » AVL.NET » Invoke.PathPathIntersections
Computes the common points of two paths.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void PathPathIntersections ( Avl.Path inPath1, Avl.Path inPath2, List<Avl.Point2D> outIntersectionPoints, Optional<List<int>> outSegmentIndices1, Optional<List<int>> outSegmentIndices2 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPath1 | Avl.Path | Input path. | ||
![]() | inPath2 | Avl.Path | Input path. | ||
![]() | outIntersectionPoints | System.Collections.Generic.List<Avl.Point2D> | Intersections between the input paths. | ||
![]() | outSegmentIndices1 | Atl.Optional<System.Collections.Generic.List<int>> | Indices of the segments of the first path which generate found intersection points. | ||
![]() | outSegmentIndices2 | Atl.Optional<System.Collections.Generic.List<int>> | Indices of the segments of the second path which generate found intersection points. |