| 65 | vtkCell* FindAndGetCell(double x[3], vtkCell* cell, vtkIdType cellId, double tol2, int& subId, |
| 66 | double pcoords[3], double* weights) override; |
| 67 | void GetPointCells(vtkIdType ptId, vtkIdList* cellIds) override |
| 68 | { |
| 69 | vtkStructuredData::GetPointCells(ptId, cellIds, this->GetDimensions()); |
| 70 | } |
| 71 | int GetMaxCellSize() override { return 8; } // voxel is the largest |
| 72 | void GetCellNeighbors(vtkIdType cellId, vtkIdList* ptIds, vtkIdList* cellIds) override; |
| 73 | vtkCell* GetCell(vtkIdType cellId) override; |
nothing calls this directly
no test coverage detected