Skip to main content

Matrix4x4.Inverse3DAffine(Matrix4x4 input)

Computes the inverse of a 3D affine matrix.

Parameters:

NameTypeDescription
inputMatrix4x4Input matrix to invert.

Returns:

typeDescription
booleanReturns true and a valid result if the function succeeds, false and a copy of the input matrix if the function fails.
Matrix4x4The result of the inversion. Equal to the input matrix if the function fails.

Usage

---@type Matrix4x4
local input;


local val0, val1 = Matrix4x4:Inverse3DAffine(input)

Extra Detail

This function is dedicated to a non-singular matrix (typically, a transform matrix), otherwise, returns false and the result is a copy of the input matrix.