Function decompressAABB3WithMat4

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

    Parameters

    • aabb: FloatArrayParam

      The AABB values to be decompressed (min and max values).

    • decompressMatrix: FloatArrayParam

      The transformation matrix used to decompress the AABB.

    • dest: FloatArrayParam = aabb

      The destination array where the decompressed AABB will be stored. Defaults to the input AABB.

    Returns FloatArrayParam

    • The decompressed AABB stored in dest.
    const aabb = [0, 0, 0, 10, 10, 10]; // Example AABB
    const matrix = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]; // Example identity matrix
    const decompressedAABB = decompressAABB3WithMat4(aabb, matrix);