Matrix.translate

translate an existing matrix

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

Meta