Skip to main content

Operator ( Matrix4x4 * Vector4 )

Transforms a Vector4 by a matrix.

LHS TypeSymbolRHS TypeResult Type
Matrix4x4*Vector4Vector4

Usage

---@type Matrix4x4
local lhs;

---@type Vector4
local rhs;

local result = lhs * rhs; -- result is Vector4