Skip to main content

Operator ( Matrix4x4 * Matrix4x4 )

Multiplies two matrices.

LHS TypeSymbolRHS TypeResult Type
Matrix4x4*Matrix4x4Matrix4x4

Usage

---@type Matrix4x4
local lhs;

---@type Matrix4x4
local rhs;

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