Flutter
vector_math
Matrix3
index method
index
Matrix3 class
Constructors
Matrix3
columns
copy
fromList
identity
outer
rotationX
rotationY
rotationZ
zero
Properties
dimension
forward
hashCode
right
row0
row1
row2
storage
up
runtimeType
Methods
absolute
absoluteError
absoluteRotate
absoluteRotate2
add
applyToVector3Array
clone
copyFromArray
copyInto
copyIntoArray
copyInverse
copyNormalMatrix
determinant
dotColumn
dotRow
entry
getColumn
getRow
index
infinityNorm
invert
isIdentity
isZero
multiplied
multiply
multiplyTranspose
negate
relativeError
scale
scaleAdjoint
scaled
setColumn
setColumns
setDiagonal
setEntry
setFrom
setIdentity
setOuter
setRotationX
setRotationY
setRotationZ
setRow
setUpper2x2
setValues
setZero
splatDiagonal
sub
toString
trace
transform
transform2
transformed
transpose
transposed
transposeMultiply
noSuchMethod
Operators
operator *
operator +
operator -
operator ==
operator []
operator []=
operator unary-
Static methods
solve
solve2
index method
int
index
(
int
row
,
int
col
)
Return index in storage for
row
,
col
value.
Implementation
int index(int row, int col) => (col * 3) + row;