You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Intersections » AVL.LineSegmentIntersection

AVL.LineSegmentIntersection

Computes a common point of a line and a segment.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void LineSegmentIntersection
(
	AvlNet.Line2D inLine,
	AvlNet.Segment2D inSegment,
	out AvlNet.Point2D? outIntersectionPoint
)

Parameters

Name Type Range Default Description
inLineAvlNet.Line2D
inSegmentAvlNet.Segment2D
outIntersectionPointAvlNet.Point2D?

Examples

LineSegmentIntersection performed on line and segment.

See also