!!! only sets /last/ bit to value
| 206 | |
| 207 | // !!! only sets /last/ bit to value |
| 208 | void resize(PxU32 newBitCount, bool value = false) |
| 209 | { |
| 210 | PX_ASSERT(!value); // only new class supports this |
| 211 | PX_UNUSED(value); |
| 212 | extend(newBitCount); |
| 213 | } |
| 214 | PxU32 size() const { return getWordCount()*32; } |
| 215 | |
| 216 | void copy(const BitMapBase& a) |
no test coverage detected