should axis rotate1ms ‣
const axis = [0.5, 0.6, -0.7];
const angle = 1.23;
const expected = mat4.multiply(m, mat4.axisRotation(axis, angle, new Array(16)));
testMat4WithAndWithoutDest((newDst) => {
return mat4.axisRotate(m, axis, angle, newDst);
}, expected);