Skip to content

raylib.MatrixDeterminant

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Compute matrix determinant

Parameters

Parameter Default Value Note
mat MatrixIdentity

Return value

Condition Return Value
(always) number

Notes

Example

mat = raylib.MatrixIdentity
d = raylib.MatrixDeterminant(mat)
print d  // 1 (determinant of identity matrix)

Clone this wiki locally