Plane(Vector3 inNormal, Vector3 inPoint)
Creates a plane.
Parameters:
Name | Type | Description |
---|---|---|
inNormal | Vector3 | plane normal. must be a normalized vector. |
inPoint | Vector3 | the 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!