Mat.rotateY

Applies a rotation to this matrix about the y-axis.

struct Mat(T, size_t rowCount, size_t colCount)
ref
static if(rowCount == colCount)
static if(N == 4 && isFloatingPoint!T)
Mat!(T, N, N)
rotateY
()
if (
isNumeric!T &&
rowCount > 0
&&
colCount > 0
)

Parameters

theta T

The angle in radians.

Return Value

Type: Mat!(T, N, N)

A reference to this matrix, for method chaining.

Meta