Skip to main content

Plane(Vector3 a, Vector3 b, Vector3 c)

Creates a plane.

Parameters:

NameTypeDescription
aVector3point A
bVector3Point B
cVector3Point C

Usage

---@type Vector3
local a;

---@type Vector3
local b;

---@type Vector3
local c;


local plane = Plane(a, b, c);

Extra Detail

The resulting plane goes through the given three points. The points go around clockwise as you look down on the top surface of the plane.