Back to Aurora Vision Library website

You are here: Start » Function Reference » Geometry 2D » Geometry 2D Interpolations » AveragePoint

AveragePoint


Header: AVL.h
Namespace: avl
Module: FoundationLite

Computes the middle point of two input points.

Syntax

C++
C#
 
void avl::AveragePoint
(
	const avl::Point2D& inPoint1,
	const avl::Point2D& inPoint2,
	avl::Point2D& outPoint
)

Parameters

Name Type Default Description
Input value inPoint1 const Point2D&
Input value inPoint2 const Point2D&
Output value outPoint Point2D&

Examples

AveragePoint performed on two points.