------------------------------------------------------------------------------
| 307 | |
| 308 | //------------------------------------------------------------------------------ |
| 309 | void vtkAbstractArray::ExportToVoidPointer(void* dest) |
| 310 | { |
| 311 | if (this->MaxId > 0 && this->GetDataTypeSize() > 0) |
| 312 | { |
| 313 | void* src = this->GetVoidPointer(0); |
| 314 | memcpy(dest, src, ((this->MaxId + 1) * this->GetDataTypeSize())); |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | //------------------------------------------------------------------------------ |
| 319 | int vtkAbstractArray::CopyInformation(vtkInformation* infoFrom, vtkTypeBool deep) |
no test coverage detected