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

Class CellVisibility

Common/DataModel/vtkCartesianGrid.cxx:25–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23namespace
24{
25class CellVisibility
26{
27public:
28 CellVisibility(vtkCartesianGrid* input)
29 : Input(input)
30 {
31 }
32 bool operator()(const vtkIdType id) { return !Input->IsCellVisible(id); }
33
34private:
35 vtkCartesianGrid* Input;
36};
37} // anonymous namespace
38
39//------------------------------------------------------------------------------

Callers 1

GetCellNeighborsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected