The quantized positions array to be decompressed. Each position is a 3D point (x, y, z).
The AABB used for decompressing. The AABB contains 6 values: [xmin, ymin, zmin, xmax, ymax, zmax].
Optional
dest: FloatArrayParam = ...The destination array to store the decompressed positions.
Decompresses a flat array of quantized 3D positions using an axis-aligned bounding box (AABB) to scale and offset.
This function restores the original 3D positions by scaling and offsetting the quantized values using the provided AABB. It calculates the scale and offset for each axis based on the AABB and the maximum quantization value (65535).