Matrix.rotate

rotate an existing matrix with an angle around an axis

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

Meta