You are here: Start » AVL.NET » AVS.TestPointArrayInRectangle Method

AVS.TestPointArrayInRectangle Method

Tests which points lie inside a rectangle.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void TestPointArrayInRectangle
(
	IList<AvlNet.Point2D> inPoints,
	AvlNet.Rectangle2D inRectangle,
	IList<bool> outIsContainedArray,
	NullableRef<List<AvlNet.Point2D>> outPoints,
	NullableValue<bool> outAreAllContained
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>Points which will be tested.
inRectangleAvlNet.Rectangle2D
outIsContainedArraySystem.Collections.Generic.IList<bool>
outPointsAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.Point2D>>Points that are contained. Can be null to skip this parameter calculation.
outAreAllContainedAvlNet.NullableValue<bool> Can be null to skip this parameter calculation.

Function Overrides

See also