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

AVL.LineArcIntersection

Computes the common points of an arc and a line.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void LineArcIntersection
(
	AvlNet.Line2D inLine,
	AvlNet.Arc2D inArc,
	out AvlNet.Point2D? outIntersectionPoint1,
	out AvlNet.Point2D? outIntersectionPoint2
)

Parameters

Name Type Range Default Description
inLineAvlNet.Line2D
inArcAvlNet.Arc2D
outIntersectionPoint1AvlNet.Point2D?
outIntersectionPoint2AvlNet.Point2D?

Examples

LineArcIntersection performed on line and arc.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in LineArcIntersection.

See also