------------------------------------------------------------------------------
| 1342 | |
| 1343 | //------------------------------------------------------------------------------ |
| 1344 | bool vtkCellArray::ResizeExact(vtkIdType numCells, vtkIdType connectivitySize) |
| 1345 | { |
| 1346 | bool result; |
| 1347 | this->Dispatch(ResizeExactImpl{}, numCells, connectivitySize, result); |
| 1348 | return result; |
| 1349 | } |
| 1350 | |
| 1351 | //------------------------------------------------------------------------------ |
| 1352 | // Returns the size of the largest cell. The size is the number of points |