dlsl v0.1.0 (2016-06-18T19:28:14Z)
Dub
Repo
Matrix.det
dlsl
matrix
Matrix
Returns the determinant of the current data ( 2x2, 3x3 and 4x4 matrices ).
alias
det
=
determinant
alias
det
=
determinant
alias
det
=
determinant
struct
Matrix
(type, int numCols, int numRows)
@
safe
pure nothrow
static if
(!(
(cols == 2) && (rows == 2)
))
static if
(!(
(cols == 3) && (rows == 3)
))
static if
(
(cols == 4) && (rows == 4)
)
alias
det
=
determinant
Meta
Source
See Implementation
dlsl
matrix
Matrix
aliases
det
rotationX
rotationY
rotationZ
toPrettyString
toString
valueType
vectorType
constructors
this
functions
clear
invert
makeDiagonal
makeIdentity
opBinary
opBinaryRight
opCast
opOpAssign
rotate
rotateX
rotateY
rotateZ
scale
translate
transpose
properties
asPrettyString
asString
determinant
identity
inverse
ok
ptr
transposed
static functions
inverseOrthographic
inversePerspective
isCompatibleMatrixImpl
isCompatibleVectorImpl
lookAt
orthographic
perspective
rotation
rotationA
scaling
translation
static variables
cols
rows
templates
isCompatibleMatrix
isCompatibleVector
variables
data
Returns the determinant of the current data ( 2x2, 3x3 and 4x4 matrices ).