should lerp1ms ‣
const expected = [1.5, 3, 4.5, 6];
testQuatWithAndWithoutDest((a, b, dst) => {
return quat.lerp(a, b, 0.5, dst);
}, expected, [1, 2, 3, 4], [2, 4, 6, 8]);
should lerp under 01ms ‣
const expected = [0.5, 1, 1.5, 2];
testQuatWithAndWithoutDest((a, b, dst) => {
return quat.lerp(a, b, -0.5, dst);
}, expected, [1, 2, 3, 4], [2, 4, 6, 8]);
should lerp over 00ms ‣
const expected = [2.5, 5, 7.5, 10];
testQuatWithAndWithoutDest((a, b, dst) => {
return quat.lerp(a, b, 1.5, dst);
}, expected, [1, 2, 3, 4], [2, 4, 6, 8]);