Matrix.translation

extract translation part of the matrix in a copy

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

Meta