------------------------------------------------------------------------------ Return the number of points from the cell defined by the maximum number of points/
| 423 | // Return the number of points from the cell defined by the maximum number of |
| 424 | // points/ |
| 425 | int vtkUnstructuredGrid::GetMaxCellSize() |
| 426 | { |
| 427 | if (this->Connectivity) |
| 428 | { // The internal implementation is threaded. |
| 429 | return this->Connectivity->GetMaxCellSize(); |
| 430 | } |
| 431 | else |
| 432 | { |
| 433 | return 0; |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | //------------------------------------------------------------------------------ |
| 438 | int vtkUnstructuredGrid::GetMaxSpatialDimension() |