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

AVL.TestPointInCircle

Tests whether a point lies inside a circle.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void TestPointInCircle
(
	AvlNet.Point2D inPoint,
	AvlNet.Circle2D inCircle,
	out bool outIsContained
)

Parameters

Name Type Range Default Description
inPointAvlNet.Point2D
inCircleAvlNet.Circle2D
outIsContainedbool

Examples

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


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

See also