Matrix2d.set

Set the values within this matrix to the supplied double values. The result looks like this: <p> m00, m10<br> m01, m11<br>

@param m00 the new value of m00 @param m01 the new value of m01 @param m10 the new value of m10 @param m11 the new value of m11 @return this

  1. Matrix2d set(Matrix2d m)
  2. Matrix2d set(Matrix3x2d m)
  3. Matrix2d set(Matrix3d m)
  4. Matrix2d set(double m00, double m01, double m10, double m11)
    struct Matrix2d
    ref return
    set
    (
    double m00
    ,
    double m01
    ,
    double m10
    ,
    double m11
    )
  5. Matrix2d set(Vector2d col0, Vector2d col1)
  6. Matrix2d set(int column, int row, double value)

Meta