You are here: Start » AVL.NET » AVS.PathLineIntersections Method

AVS.PathLineIntersections Method

Computes the common points of a path and a line.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void PathLineIntersections
(
	AvlNet.Path inPath,
	AvlNet.Line2D inLine,
	IList<AvlNet.Point2D> outIntersectionPoints,
	NullableRef<List<int>> outSegmentIndices
)

Parameters

Name Type Range Default Description
inPathAvlNet.PathInput path.
inLineAvlNet.Line2DInput line.
outIntersectionPointsSystem.Collections.Generic.IList<AvlNet.Point2D>Intersections between the path and the line.
outSegmentIndicesAvlNet.NullableRef<System.Collections.Generic.List<int>>Indices of the segments of the path which generate found intersection points. Can be null to skip this parameter calculation.

Function Overrides

See also