• Computes the minimum and maximum bounds for a flat array of UV coordinates.

    This function iterates over a flat array of UV coordinates and computes the minimum and maximum values for each component (u, v). These bounds can be used for various operations like normalization, quantization, or texture mapping.

    Parameters

    • array: FloatArrayParam

      The input array of UV coordinates (each UV pair consisting of [u, v]).

    Returns { max: FloatArrayParam; min: FloatArrayParam }

    • An object containing:
      • min: The minimum values for each component ([u, v]).
      • max: The maximum values for each component ([u, v]).
    const uvs = new Float32Array([0.1, 0.2, 0.5, 0.6, 0.3, 0.4]);
    const { min, max } = getUVBounds(uvs);
    console.log(min); // [0.1, 0.2]
    console.log(max); // [0.5, 0.6]