------------------------------------------------------------------------------
| 166 | |
| 167 | //------------------------------------------------------------------------------ |
| 168 | void vtkHyperTreeGridMapper::SetBlockVisibility(unsigned int index, bool visible) |
| 169 | { |
| 170 | if (visible) |
| 171 | { |
| 172 | this->BlocksShown.insert(index); |
| 173 | this->BlocksHidden.erase(index); |
| 174 | } |
| 175 | else |
| 176 | { |
| 177 | this->BlocksHidden.insert(index); |
| 178 | this->BlocksShown.erase(index); |
| 179 | } |
| 180 | this->Modified(); |
| 181 | } |
| 182 | |
| 183 | //------------------------------------------------------------------------------ |
| 184 | bool vtkHyperTreeGridMapper::GetBlockVisibility(unsigned int index) |
no test coverage detected