------------------------------------------------------------------------------
| 369 | |
| 370 | //------------------------------------------------------------------------------ |
| 371 | inline vtkIdType vtkStructuredData::ComputeCellId(const int dims[3], const int ijk[3], int) |
| 372 | { |
| 373 | return vtkStructuredData::GetLinearIndex(ijk[0], ijk[1], ijk[2], |
| 374 | vtkStructuredData::Max(dims[0] - 1, 1), vtkStructuredData::Max(dims[1] - 1, 1)); |
| 375 | } |
| 376 | |
| 377 | //------------------------------------------------------------------------------ |
| 378 | inline vtkIdType vtkStructuredData::GetNumberOfPoints(const int ext[6], int) |
nothing calls this directly
no test coverage detected