void |
BitMatrix.and(BitMatrix other) |
Performs a logical AND of the receiver with another bit matrix.
|
void |
BitMatrix.andNot(BitMatrix other) |
Clears all of the bits in receiver whose corresponding
bit is set in the other bit matrix.
|
protected void |
BitMatrix.checkDimensionCompatibility(BitMatrix other) |
Sanity check for operations requiring matrices with the same number of columns and rows.
|
void |
BitMatrix.or(BitMatrix other) |
Performs a logical OR of the receiver with another bit matrix.
|
void |
BitMatrix.replaceBoxWith(int column,
int row,
int width,
int height,
BitMatrix source,
int sourceColumn,
int sourceRow) |
Replaces a box of the receiver with the contents of another matrix's box.
|
void |
BitMatrix.xor(BitMatrix other) |
Performs a logical XOR of the receiver with another bit matrix.
|