Vector4.Min(Vector4 lhs, Vector4 rhs)
Returns a vector that is made from the smallest components of two vectors.
Parameters:
Name | Type | Description |
---|---|---|
lhs | Vector4 | lhs Vector 4. |
rhs | Vector4 | rhs Vector4. |
Returns:
type | Description |
---|---|
Vector4 | Vector that is made from the smallest components of two vectors. |
Usage
---@type Vector4
local lhs;
---@type Vector4
local rhs;
local val0 = Vector4:Min( lhs, rhs)