Back to Aurora Vision Library website

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

LineArcIntersection


Header: AVL.h
Namespace: avl
Module: FoundationLite

Computes the common points of an arc and a line.

Syntax

C++
C#
 
void avl::LineArcIntersection
(
	const avl::Line2D& inLine,
	const avl::Arc2D& inArc,
	atl::Conditional<avl::Point2D>& outIntersectionPoint1,
	atl::Conditional<avl::Point2D>& outIntersectionPoint2
)

Parameters

Name Type Default Description
Input value inLine const Line2D&
Input value inArc const Arc2D&
Output value outIntersectionPoint1 Conditional<Point2D>&
Output value outIntersectionPoint2 Conditional<Point2D>&

Examples

LineArcIntersection performed on line and arc.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in LineArcIntersection.