should subtract1ms ‣
const expected = [-1, -2, -3, -4];
testQuatWithAndWithoutDest((a, b, dst) => {
return quat.subtract(a, b, dst);
}, expected, [1, 2, 3, 4], [2, 4, 6, 8]);
should sub0ms ‣
const expected = [-1, -2, -3, -4];
testQuatWithAndWithoutDest((a, b, dst) => {
return quat.sub(a, b, dst);
}, expected, [1, 2, 3, 4], [2, 4, 6, 8]);