------------------------------------------------------------------------------ Get the data at a particular index.
| 165 | //------------------------------------------------------------------------------ |
| 166 | // Get the data at a particular index. |
| 167 | int vtkBitArray::GetValue(vtkIdType id) const |
| 168 | { |
| 169 | return (this->Array[id / 8] & (0x80 >> (id % 8))) != 0; |
| 170 | } |
| 171 | |
| 172 | //------------------------------------------------------------------------------ |
| 173 | // Allocate memory for this array. Delete old storage only if necessary. |
no outgoing calls