Matrix2d.this

Create a new 2x2 matrix using the supplied double values. The order of the parameter is column-major, so the first two parameters specify the two elements of the first column.

@param m00 the value of m00 @param m01 the value of m01 @param m10 the value of m10 @param m11 the value of m11

  1. this(Matrix2d mat)
  2. this(Matrix3d mat)
  3. this(double m00, double m01, double m10, double m11)
    struct Matrix2d
    this
    (
    double m00
    ,
    double m01
    ,
    double m10
    ,
    double m11
    )
  4. this(Vector2d col0, Vector2d col1)

Meta