| 168 | namespace |
| 169 | { |
| 170 | class CellVisibility |
| 171 | { |
| 172 | public: |
| 173 | CellVisibility(vtkStructuredGrid* input) |
| 174 | : Input(input) |
| 175 | { |
| 176 | } |
| 177 | bool operator()(const vtkIdType id) { return !Input->IsCellVisible(id); } |
| 178 | |
| 179 | private: |
| 180 | vtkStructuredGrid* Input; |
| 181 | }; |
| 182 | } // anonymous namespace |
| 183 | |
| 184 | //------------------------------------------------------------------------------ |