Matrix.translate

Applys a translation on the current matrix and returns this (3x3 and 4x4 matrices).

  1. Matrix translate(mt x, mt y, mt z)
    struct Matrix(type, int rows_, int cols_)
    @safe pure nothrow
    static if((rows == cols) && (rows >= 3) && (rows <= 4))
    translate
    (,,)
    if (
    (rows_ > 0) &&
    (cols_ > 0)
    )
  2. Matrix translate(Vector!(mt, 3) v)

Meta