Function compressPoint3WithAABB3

  • 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.

    Parameters

    • p: FloatArrayParam

      The 3D point to be compressed.

    • aabb: FloatArrayParam

      The axis-aligned bounding box [xmin, ymin, zmin, xmax, ymax, zmax].

    • dest: FloatArrayParam = p

      The destination array where the compressed point will be stored. Defaults to the input point (p).

    Returns FloatArrayParam

    • The compressed point in dest.
    const point = [0.5, 0.5, 0.5];
    const aabb = [0, 0, 0, 1, 1, 1];
    const compressedPoint = compressPoint3WithAABB3(point, aabb);