Compresses a single 3D point (p) within a specified axis-aligned bounding box (AABB) and stores the result in dest. The point is quantized to fit within the range [0, 65535] based on the AABB bounds.
The 3D point to be compressed.
The axis-aligned bounding box [xmin, ymin, zmin, xmax, ymax, zmax].
The destination array where the compressed point will be stored. Defaults to the input point (p).
const point = [0.5, 0.5, 0.5];const aabb = [0, 0, 0, 1, 1, 1];const compressedPoint = compressPoint3WithAABB3(point, aabb); Copy
const point = [0.5, 0.5, 0.5];const aabb = [0, 0, 0, 1, 1, 1];const compressedPoint = compressPoint3WithAABB3(point, aabb);
Compresses a single 3D point (p) within a specified axis-aligned bounding box (AABB) and stores the result in dest. The point is quantized to fit within the range [0, 65535] based on the AABB bounds.