------------------------------------------------------------------------------
| 363 | |
| 364 | //------------------------------------------------------------------------------ |
| 365 | inline vtkIdType vtkStructuredData::ComputePointId(const int dims[3], const int ijk[3], int) |
| 366 | { |
| 367 | return vtkStructuredData::GetLinearIndex(ijk[0], ijk[1], ijk[2], dims[0], dims[1]); |
| 368 | } |
| 369 | |
| 370 | //------------------------------------------------------------------------------ |
| 371 | inline vtkIdType vtkStructuredData::ComputeCellId(const int dims[3], const int ijk[3], int) |
nothing calls this directly
no test coverage detected