Back to Aurora Vision Library website

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

SegmentSegmentIntersection


Header: AVL.h
Namespace: avl
Module: FoundationLite

Computes a common point of two segments.

Syntax

C++
C#
 
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