should translate1ms ‣
const expected = [
0, 1, 2, 3,
4, 5, 6, 7,
8, 9, 10, 11,
12 + 0 * 2 + 4 * 3 + 8 * 4,
13 + 1 * 2 + 5 * 3 + 9 * 4,
14 + 2 * 2 + 6 * 3 + 10 * 4,
15 + 3 * 2 + 7 * 3 + 11 * 4,
];
testMat4WithAndWithoutDest((newDst) => {
return mat4.translate(m, [2, 3, 4], newDst);
}, expected);