Matrix.rotate

Rotate the current matrix arround an arbitrary axis

  1. Matrix rotate(real angle)
  2. Matrix rotate(real angle, Vector!(valueType, 3) axis)
    struct Matrix(type, int numCols, int numRows)
    @safe pure nothrow
    static if((cols == rows) && (cols >= 3))
    rotate
    if (
    (numCols > 1) &&
    (numRows > 1)
    )

Meta