Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Relations » TestPointInCircle

TestPointInCircle


Tests whether a point lies inside a circle.

Syntax

C++
C#
 
void avl::TestPointInCircle
(
	const avl::Point2D& inPoint,
	const avl::Circle2D& inCircle,
	bool& outIsContained
)

Parameters

Name Type Default Description
inPoint const Point2D&
inCircle const Circle2D&
outIsContained bool&

Examples

TestPointInCircle performed on the sample circle and point. outIsContained = True.


TestPointInCircle performed on the sample circle and point. outIsContained = False.