-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Matrixf
abs()
Matrixf
ceil()
Vectorf
column(int col)
float
determinant()
Matrixf
div(float a)
Matrixf
floor()
float
get(int row, int col)
Matrixf
invert()
Matrixf
mul(float a)
Matrixf
negate()
Matrixf
pow(float pow)
Matrixf
round()
Vectorf
row(int row)
float[]
toArray(boolean columnMajor)
Matrixd
toDouble()
Matrixf
toFloat()
float
trace()
Matrixf
transpose()
-
-
-
Method Detail
-
get
float get(int row, int col)
-
row
Vectorf row(int row)
-
column
Vectorf column(int col)
-
mul
Matrixf mul(float a)
-
div
Matrixf div(float a)
-
pow
Matrixf pow(float pow)
-
ceil
Matrixf ceil()
-
floor
Matrixf floor()
-
round
Matrixf round()
-
abs
Matrixf abs()
-
negate
Matrixf negate()
-
transpose
Matrixf transpose()
-
trace
float trace()
-
determinant
float determinant()
-
invert
Matrixf invert()
-
toArray
float[] toArray(boolean columnMajor)
-
toFloat
Matrixf toFloat()
-
toDouble
Matrixd toDouble()
-
-