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

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
inPath1Avl.PathInput path.
inPath2Avl.PathInput path.
outIntersectionPointsSystem.Collections.Generic.List<Avl.Point2D>Intersections between the input paths.
outSegmentIndices1Atl.Optional<System.Collections.Generic.List<int>>Indices of the segments of the first path which generate found intersection points.
outSegmentIndices2Atl.Optional<System.Collections.Generic.List<int>>Indices of the segments of the second path which generate found intersection points.

See also