Back to Aurora Vision Library Lite website

You are here: Start » Geometry 2D » Geometry 2D Intersections » SegmentArcIntersection

SegmentArcIntersection


Header: AVL.h
Namespace: avl

Computes the common points of an arc and a segment.

Syntax

void avl::SegmentArcIntersection
(
	const avl::Segment2D& inSegment,
	const avl::Arc2D& inArc,
	atl::Conditional<avl::Point2D>& outIntersectionPoint1,
	atl::Conditional<avl::Point2D>& outIntersectionPoint2
)

Parameters

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

Examples

SegmentArcIntersection performed on segment and arc.