Matrix.rotation

static construction of a rotation matrix angle and axis coordinates

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

Meta