Skip to main content

Plane.SameSide(Vector3 point0, Vector3 point1)

Are two points on the same side of the plane?

Parameters:

NameTypeDescription
point0Vector3Point 0
point1Vector3Point 1

Returns:

typeDescription
booleanTrue if two points on the same side of the plane

Usage

---@type Plane
local plane;

---@type Vector3
local point0;

---@type Vector3
local point1;


local val0 = plane.SameSide(point0, point1)