@lakuna/uscene
    Preparing search index...

    Type Alias ReadonlyFloat32Array

    ReadonlyFloat32Array: Readonly<
        Omit<
            Float32Array,
            "buffer"
            | "copyWithin"
            | "fill"
            | "reverse"
            | "set"
            | "sort",
        >,
    > & {
        buffer: Readonly<
            Pick<
                Float32Array["buffer"],
                "byteLength"
                | "maxByteLength"
                | "slice"
                | typeof Symbol.toStringTag,
            >,
        >;
    }

    A read-only Float32Array.

    Type Declaration

    • Readonlybuffer: Readonly<
          Pick<
              Float32Array["buffer"],
              "byteLength"
              | "maxByteLength"
              | "slice"
              | typeof Symbol.toStringTag,
          >,
      >

      The ArrayBuffer instance referenced by the array.