should multiply by scalar0ms ‣
const expected = [2, 4, 6, 8];
testQuatWithAndWithoutDest((a, dst) => {
return quat.mulScalar(a, 2, dst);
}, expected, [1, 2, 3, 4]);
should multiply0ms ‣
const expected = [-16, -32, -48, -4];
testQuatWithAndWithoutDest((a, b, dst) => {
return quat.multiply(a, b, dst);
}, expected, [1, 2, 3, 4], [-2, -4, -6, -8]);