------------------------------------------------------------------------------ Specify a group of cells.
| 717 | //------------------------------------------------------------------------------ |
| 718 | // Specify a group of cells. |
| 719 | void vtkCellArray::SetCells(vtkIdType ncells, vtkIdTypeArray* cells) |
| 720 | { |
| 721 | this->AllocateExact(ncells, cells->GetNumberOfValues() - ncells); |
| 722 | this->ImportLegacyFormat(cells); |
| 723 | } |
| 724 | |
| 725 | //=================== End Legacy Methods ===================================== |
| 726 |