Matrix.rotateX

Rotates the current matrix around the x-axis and returns this (nxn matrices, n >= 3).

struct Matrix(type, int rows_, int cols_)
@safe pure nothrow
static if((rows == cols) && (rows >= 3))
static if(isFloatingPoint!mt)
rotateX
(
real alpha
)
if (
(rows_ > 0) &&
(cols_ > 0)
)

Meta