Matrix.translate

translate an existing matrix

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

Meta