Modifier and Type | Field and Description |
---|---|
private BiggerBitSet |
VoxelArray.voxels
The
BiggerBitSet that contains all of the bits. |
Modifier and Type | Method and Description |
---|---|
void |
BiggerBitSet.and(BiggerBitSet set)
Performs a logical AND of this target bit set with the
argument bit set.
|
void |
BiggerBitSet.andNot(BiggerBitSet set)
Clears all of the bits in this
BiggerBitSet whose corresponding
bit is set in the specified BiggerBitSet . |
boolean |
BiggerBitSet.intersects(BiggerBitSet set)
Returns true if the specified
BiggerBitSet has any bits set to
true that are also set to true in this BiggerBitSet . |
void |
BiggerBitSet.or(BiggerBitSet set)
Performs a logical OR of this bit set with the bit set
argument.
|
void |
BiggerBitSet.xor(BiggerBitSet set)
Performs a logical XOR of this bit set with the bit set
argument.
|