Skip to main content

Rect.Contains(Vector3 point, boolean allowInverse)

Returns true if the x and y components of point is a point inside this rectangle. If allowInverse is present and true, the width and height of the Rect are allowed to take negative values (ie, the min value is greater than the max), and the test will still work.

Parameters:

NameTypeDescription
pointVector3Point to test.
allowInversebooleanDoes the test allow the Rect's width and height to be negative?

Returns:

typeDescription
booleanTrue if the point lies within the specified rectangle.

Usage

---@type Rect
local rect;

---@type Vector3
local point;

---@type boolean
local allowInverse;


local val0 = rect.Contains(point, allowInverse)