Creates a 4x4 matrix for decompressing 3D positions based on a given axis-aligned bounding box (AABB). This matrix is used to map compressed positions back to their original space.
The axis-aligned bounding box (AABB) defined by [xmin, ymin, zmin, xmax, ymax, zmax].
Optional
An optional pre-allocated matrix to store the result. Defaults to a new matrix if not provided.
const aabb = [0, 0, 0, 10, 10, 10];const decompressionMatrix = createPositions3DecompressMat4(aabb); Copy
const aabb = [0, 0, 0, 10, 10, 10];const decompressionMatrix = createPositions3DecompressMat4(aabb);
Creates a 4x4 matrix for decompressing 3D positions based on a given axis-aligned bounding box (AABB). This matrix is used to map compressed positions back to their original space.