------------------------------------------------------------------------------
| 150 | |
| 151 | //------------------------------------------------------------------------------ |
| 152 | void vtkVariantArray::Initialize() |
| 153 | { |
| 154 | if (this->DeleteFunction) |
| 155 | { |
| 156 | this->DeleteFunction(this->Array); |
| 157 | } |
| 158 | this->Array = nullptr; |
| 159 | this->Size = 0; |
| 160 | this->MaxId = -1; |
| 161 | this->DeleteFunction = DefaultDeleteFunction; |
| 162 | this->DataChanged(); |
| 163 | } |
| 164 | |
| 165 | //------------------------------------------------------------------------------ |
| 166 | bool vtkVariantArray::CopyComponent(int dstComponent, vtkAbstractArray* src, int srcComponent) |
no test coverage detected