Back to Aurora Vision Library Lite website

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

SegmentSegmentIntersection


Header: AVL.h
Namespace: avl

Computes a common point of two segments.

Syntax

void avl::SegmentSegmentIntersection
(
	const avl::Segment2D& inSegment1,
	const avl::Segment2D& inSegment2,
	atl::Conditional<avl::Point2D>& outIntersectionPoint
)

Parameters

Name Type Default Description
Input value inSegment1 const Segment2D&
Input value inSegment2 const Segment2D&
Output value outIntersectionPoint Conditional<Point2D>&

Examples

SegmentSegmentIntersection performed on two segments.

See Also