Decompresses an AABB (Axis-Aligned Bounding Box) using another AABB as reference for scaling and offset. This function applies the scaling and offset defined by the second AABB to the first AABB.
The AABB values to be decompressed (min and max values).
The reference AABB used for decompression (min and max values).
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 aabb2 = [0, 0, 0, 20, 20, 20]; // Example reference AABB for scalingconst decompressedAABB = decompressAABB3WithAABB3(aabb, aabb2); Copy
const aabb = [0, 0, 0, 10, 10, 10]; // Example AABBconst aabb2 = [0, 0, 0, 20, 20, 20]; // Example reference AABB for scalingconst decompressedAABB = decompressAABB3WithAABB3(aabb, aabb2);
Decompresses an AABB (Axis-Aligned Bounding Box) using another AABB as reference for scaling and offset. This function applies the scaling and offset defined by the second AABB to the first AABB.