hilbert.h 189 B

1234567891011121314151617181920
  1. typedef struct Leaf {
  2. uint64_t b[8];
  3. } Leaf;
  4. // cube
  5. typedef struct Bitfield {
  6. int edgeSize; // in bits
  7. int allocSize; // in bytes
  8. int bitsPerCell;
  9. uint8_t b[0];
  10. } Bitfield;