Decompresses a 3D point (position) based on a given AABB (Axis-Aligned Bounding Box). The function scales and offsets the position to restore it to its original coordinates.
The compressed 3D point to be decompressed.
The AABB (min and max values) used to decompress the position.
The destination array to store the decompressed point. Defaults to the input position.
const compressedPosition = [30000, 30000, 30000];const aabb = [0, 0, 0, 10000, 10000, 10000];const decompressedPoint = decompressPoint3WithAABB3(compressedPosition, aabb); Copy
const compressedPosition = [30000, 30000, 30000];const aabb = [0, 0, 0, 10000, 10000, 10000];const decompressedPoint = decompressPoint3WithAABB3(compressedPosition, aabb);
Decompresses a 3D point (position) based on a given AABB (Axis-Aligned Bounding Box). The function scales and offsets the position to restore it to its original coordinates.