inmath ~master (2022-05-26T00:17:45.8140456)
Dub
Repo
Matrix.det
inmath
linalg
Matrix
Returns the determinant of the current matrix (2x2, 3x3 and 4x4 matrices).
mt
det
()
mt
det
()
mt
det
()
struct
Matrix
(type, int rows_, int cols_)
@
safe
pure nothrow const
static if
(!(
(rows == 2) && (cols == 2)
))
static if
(!(
(rows == 3) && (cols == 3)
))
static if
(
(rows == 4) && (cols == 4)
)
mt
det
(
)
if
(
(
rows_
> 0
)
&&
(
cols_
> 0
)
)
Meta
Source
See Implementation
inmath
linalg
Matrix
aliases
mt
ok
constructors
this
functions
clear
det
inverse
invert
isFinite
makeIdentity
opBinary
opBinaryRight
opOpAssign
ptr
rotate
rotateX
rotateY
rotateZ
scale
toPrettyString
toString
translate
transpose
transposed
static functions
identity
isCompatibleMatrixImpl
isCompatibleVectorImpl
lookAt
orthographic
orthographicInverse
perspective
persperctiveInverse
rotation
scaling
translation
xRotation
yRotation
zRotation
static variables
cols
rows
templates
isCompatibleMatrix
isCompatibleVector
variables
matrix
Returns the determinant of the current matrix (2x2, 3x3 and 4x4 matrices).