BitMatrix
Engine/source/core/bitMatrix.h
A matrix of bits.
Setters
Queries
Private Attributes
Detailed Description
A matrix of bits.
This class manages an array of bits. There are no limitations on the size of the bit matrix (beyond available memory).
note:This class is currently unused.
Setters
clearAllBits()
Set all the bits in the matrix to false.
setAllBits()
Set all the bits in the matrix to true.
setBit(const U32 x, const U32 y)
Set a bit at a given location in the matrix.
clearBit(const U32 x, const U32 y)
Clear a bit at a given location in the matrix.