------------------------------------------------------------------------------
| 1031 | |
| 1032 | //------------------------------------------------------------------------------ |
| 1033 | void vtkCellArray::Use32BitStorage() |
| 1034 | { |
| 1035 | if (this->IsStorage32Bit()) |
| 1036 | { |
| 1037 | this->Initialize(); |
| 1038 | return; |
| 1039 | } |
| 1040 | this->Offsets = vtkSmartPointer<AOSArray32>::New(); |
| 1041 | this->Connectivity = vtkSmartPointer<AOSArray32>::New(); |
| 1042 | this->GetOffsetsAOSArray32()->InsertNextValue(0); |
| 1043 | this->StorageType = StorageTypes::Int32; |
| 1044 | this->Modified(); |
| 1045 | } |
| 1046 | |
| 1047 | //------------------------------------------------------------------------------ |
| 1048 | void vtkCellArray::Use64BitStorage() |