Matrix.translation

static construction of a translation matrix from an array/vector

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

Meta