Decompresses an AABB (Axis-Aligned Bounding Box) using a transformation matrix. This function applies a matrix to each corner of the AABB to compute the decompressed AABB.
The AABB values to be decompressed (min and max values).
The transformation matrix used to decompress the AABB.
The destination array where the decompressed AABB will be stored. Defaults to the input AABB.
dest
const aabb = [0, 0, 0, 10, 10, 10]; // Example AABBconst matrix = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]; // Example identity matrixconst decompressedAABB = decompressAABB3WithMat4(aabb, matrix); Copy
const aabb = [0, 0, 0, 10, 10, 10]; // Example AABBconst matrix = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]; // Example identity matrixconst decompressedAABB = decompressAABB3WithMat4(aabb, matrix);
Decompresses an AABB (Axis-Aligned Bounding Box) using a transformation matrix. This function applies a matrix to each corner of the AABB to compute the decompressed AABB.