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

Invoke.PathLineIntersections

Computes the common points of a path and a line.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void PathLineIntersections
(
	Avl.Path inPath,
	Avl.Line2D inLine,
	List<Avl.Point2D> outIntersectionPoints,
	Optional<List<int>> outSegmentIndices
)

Parameters

Name Type Range Default Description
inPathAvl.PathInput path.
inLineAvl.Line2DInput line.
outIntersectionPointsSystem.Collections.Generic.List<Avl.Point2D>Intersections between the path and the line.
outSegmentIndicesAtl.Optional<System.Collections.Generic.List<int>>Indices of the segments of the path which generate found intersection points.

See also