Outputs rotation of angle around axis.
rot axisAngle(vec3 axis, float angle)
Type: vec3
The axis to rotate around.
Type: float
How much to rotate (in degrees).
inspect(axisAngle(vec3(0, 1, 0), 90)) // (0, 90, 0))
inspect(axisAngle(vec3(1, 0, 0), 45)) // (45, 0, 0)