Compresses a flat array of 3D positions into a quantized format, and computes the matrix for decompressing back to the original range.
The array of 3D positions to be compressed.
The minimum bounds for the 3D positions.
The maximum bounds for the 3D positions.
const positions = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6];const min = [0, 0, 0];const max = [1, 1, 1];const { quantized, decompressMatrix } = compressPositions3(positions, min, max); Copy
const positions = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6];const min = [0, 0, 0];const max = [1, 1, 1];const { quantized, decompressMatrix } = compressPositions3(positions, min, max);
Compresses a flat array of 3D positions into a quantized format, and computes the matrix for decompressing back to the original range.