Interface Matrixf

All Known Implementing Classes:
Matrix2f, Matrix3f, Matrix4f, MatrixNf

public interface Matrixf
  • Method Details

    • 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()