Matrix.translation

static construction of a translation matrix from an array/vector

  1. Matrix translation(type x)
  2. Matrix translation(type[2] vec)
  3. Matrix translation(type x, type y)
  4. Matrix translation(type[3] vec)
    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))
    static if(!(cols == 3))
    static if(cols == 4)
    translation
    (
    type[3] vec
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  5. Matrix translation(type x, type y, type z)
  6. Matrix translation()

Meta