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

AVL.TestPointInBox

Tests whether a point lies in a box.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void TestPointInBox
(
	AvlNet.Point2D inPoint,
	AvlNet.Box inBox,
	out bool outIsContained
)

Parameters

Name Type Range Default Description
inPointAvlNet.Point2D
inBoxAvlNet.Box
outIsContainedbool

Examples

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


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

See also