should make lookAt matrix0ms ‣
const eye = [1, 2, 3];
const target = [11, 22, 33];
const up = [-4, -5, -6];
const expected = [
0.40824833512306213,
-0.8728715181350708,
-0.26726123690605164,
0,
-0.8164966106414795,
-0.21821792423725128,
-0.5345224738121033,
0,
0.40824824571609497,
0.4364357888698578,
-0.8017837405204773,
0,
Type === Float32Array ? 1.4901161193847656e-7 : -4.440892098500626e-16,
0,
3.74165740609169,
1,
];
testMat4WithAndWithoutDest((newDst) => {
return mat4.lookAt(eye, target, up, newDst);
}, expected);