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

Invoke.PathSegmentIntersections

Computes the common points of a path and a segment.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void PathSegmentIntersections
(
	Avl.Path inPath,
	Avl.Segment2D inSegment,
	List<Avl.Point2D> outIntersectionPoints,
	Optional<List<int>> outSegmentIndices
)

Parameters

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

See also