Function decompressPoint3WithAABB3

  • 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.

    Parameters

    • position: FloatArrayParam

      The compressed 3D point to be decompressed.

    • aabb: FloatArrayParam

      The AABB (min and max values) used to decompress the position.

    • dest: FloatArrayParam = position

      The destination array to store the decompressed point. Defaults to the input position.

    Returns FloatArrayParam

    • The decompressed 3D point stored in dest.
    const compressedPosition = [30000, 30000, 30000];
    const aabb = [0, 0, 0, 10000, 10000, 10000];
    const decompressedPoint = decompressPoint3WithAABB3(compressedPosition, aabb);