Decompresses a 3D point (position) using a given 4x4 matrix (decompressMatrix). This function applies the matrix transformations to the position to restore the original values.
The compressed 3D point to be decompressed.
A 4x4 matrix used to decompress the position.
The destination array to store the decompressed point. Defaults to the input position.
const compressedPosition = [100, 150, 200];const matrix = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1];const decompressedPoint = decompressPoint3WithMat4(compressedPosition, matrix); Copy
const compressedPosition = [100, 150, 200];const matrix = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1];const decompressedPoint = decompressPoint3WithMat4(compressedPosition, matrix);
Decompresses a 3D point (position) using a given 4x4 matrix (decompressMatrix). This function applies the matrix transformations to the position to restore the original values.