GetSide
7/14/25Less than 1 minute
Plane.GetSide(Vector3 point)
Is a point on the positive side of the plane?
Parameters:
| Name | Type | Description |
|---|---|---|
| point | Vector3 | point |
Returns:
| type | Description |
|---|---|
| boolean | True if point on the positive side of the plane |
Usage
---@type Plane
local plane;
---@type Vector3
local point;
local val0 = plane.GetSide(point)
