should rotateY0ms ‣
const tests = [
{ angle: 0, expected: [1, 2, 3, 4], },
{ angle: Math.PI, expected: [-3, 4, 1, -2], },
{ angle: -Math.PI, expected: [3, -4, -1, 2], },
];
for (const {angle, expected} of tests) {
testQuatWithAndWithoutDest((a, dst) => {
return quat.rotateY([1, 2, 3, 4], a, dst);
}, expected, angle);
}