UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 299 B
/** * de Bruijn sequence * @see https://graphics.stanford.edu/~seander/bithacks.html * @type {Uint8Array} */ export const msb_lut_de_bruijn = new Uint8Array([ 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9 ]);