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
Input value inPath1 Path Input path
Input value inPath2 Path Input path
Output value outIntersectionPoints list[Point2D] Intersections between the input paths
Output value outSegmentIndices1 list[int] Indices of the segments of the first path which generate found intersection points
Output value outSegmentIndices2 list[int] Indices of the segments of the second path which generate found intersection points