PathPathIntersections
Computes the common points of two paths.
Syntax
C++
C#
Python
def PathPathIntersections( inPath1: Path, inPath2: Path, / ) -> ( outIntersectionPoints: list[Point2D], outSegmentIndices1: list[int], outSegmentIndices2: list[int] )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPath1 | Path | Input path | |
![]() |
inPath2 | Path | Input path | |
![]() |
outIntersectionPoints | list[Point2D] | Intersections between the input paths | |
![]() |
outSegmentIndices1 | list[int] | Indices of the segments of the first path which generate found intersection points | |
![]() |
outSegmentIndices2 | list[int] | Indices of the segments of the second path which generate found intersection points |


