Back to Aurora Vision Library Lite website

You are here: Start » Geometry 2D » Geometry 2D Relations » TestPointInBox

TestPointInBox


Header: AVL.h
Namespace: avl

Tests whether a point lies in a box.

Syntax

void avl::TestPointInBox
(
	const avl::Point2D& inPoint,
	const avl::Box& inBox,
	bool& outIsContained
)

Parameters

Name Type Default Description
Input value inPoint const Point2D&
Input value inBox const Box&
Output value outIsContained bool&

Examples

TestPointInBox performed on the sample box and point. outIsContained = True.


TestPointInBox performed on the sample box and point. outIsContained = False.