Matrix3x2d.this

Create a new 3x2 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 @param m20 the value of m20 @param m21 the value of m21

  1. this(Matrix2d mat)
  2. this(Matrix3x2d mat)
  3. this(double m00, double m01, double m10, double m11, double m20, double m21)
    struct Matrix3x2d
    this
    (
    double m00
    ,
    double m01
    ,
    double m10
    ,
    double m11
    ,
    double m20
    ,
    double m21
    )

Meta