Plane(Vector3 a, Vector3 b, Vector3 c)
Creates a plane.
Parameters:
Name | Type | Description |
---|---|---|
a | Vector3 | point A |
b | Vector3 | Point B |
c | Vector3 | Point 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.