MCPcopy Create free account
hub / github.com/Kitware/VTK / CellVisibility

Class CellVisibility

Common/DataModel/vtkStructuredGrid.cxx:170–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

GetCellNeighborsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected