Matrix.translation

static construction of a translation matrix

  1. Matrix translation(type x)
    struct Matrix(type, int numCols, int numRows)
    nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe @safe pure nothrow static
    static if(cols == rows)
    static if(cols == 2)
    translation
    (
    type x
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  2. Matrix translation(type[2] vec)
  3. Matrix translation(type x, type y)
  4. Matrix translation(type[3] vec)
  5. Matrix translation(type x, type y, type z)
  6. Matrix translation()

Meta