Matrix.this

Construct a Matrix from a single value, for non- and square matrices see GLSL 4.5 Spec, section 5.4.2 Vector and Matrix Constructors

  1. this(Args args)
  2. this(T mat)
  3. this(type value)
    struct Matrix(type, int numCols, int numRows)
    nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe @safe pure nothrow
    this
    ()
    (
    type value
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  4. this(Q_OR_DQ q)

Meta