Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Constructions » LineThroughPoints

LineThroughPoints


Header:AVL.h
Namespace:avl

Computes a line passing through two distinct points.

Syntax

C++
C#
 
void avl::LineThroughPoints
(
	const avl::Point2D& inPoint1,
	const avl::Point2D& inPoint2,
	avl::Line2D& outLine
)

Parameters

Name Type Default Description
inPoint1 const Point2D&
inPoint2 const Point2D&
outLine Line2D&

Description

Note that because of inaccuracies of floating-point arithmetic, some geometric operations (including this one) may lead to unpredictable results for degenerated cases. In this filter such a case occurs when the input points are almost equal.

Examples

LineThroughPoints performed on two points.