Skip to main content

Plane(Vector3 inNormal, Vector3 inPoint)

Creates a plane.

Parameters:

NameTypeDescription
inNormalVector3plane normal. must be a normalized vector.
inPointVector3the point which plane goes through.

Usage

---@type Vector3
local inNormal;

---@type Vector3
local inPoint;


local plane = Plane(inNormal, inPoint);

Extra Detail

Resulting plane has normal inNormal and goes through a point inPoint.
inNormal must be a normalized vector!