| 312 | } |
| 313 | |
| 314 | void vtkCellGrid::GetBounds(double bounds[6]) |
| 315 | { |
| 316 | if (this->CachedBoundsTime < this->GetMTime()) |
| 317 | { |
| 318 | this->ComputeBoundsInternal(); |
| 319 | } |
| 320 | for (int ii = 0; ii < 6; ++ii) |
| 321 | { |
| 322 | bounds[ii] = this->CachedBounds[ii]; |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | vtkCellMetadata* vtkCellGrid::AddCellMetadata(vtkCellMetadata* cellType) |
| 327 | { |
no test coverage detected