void unset(int x, int y) { final offset = y * _rowSize + (x ~/ 32); _bits[offset] &= ~(1 << (x & 0x1f) & 0xFFFFFFFF); }