------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | void vtkDataSet::Initialize() |
| 68 | { |
| 69 | // We don't modify ourselves because the "ReleaseData" methods depend upon |
| 70 | // no modification when initialized. |
| 71 | vtkDataObject::Initialize(); |
| 72 | |
| 73 | if (this->TempPoints) |
| 74 | { |
| 75 | this->TempPoints->Initialize(); |
| 76 | } |
| 77 | this->CellData->Initialize(); |
| 78 | this->PointData->Initialize(); |
| 79 | } |
| 80 | |
| 81 | //------------------------------------------------------------------------------ |
| 82 | void vtkDataSet::CopyAttributes(vtkDataSet* ds) |
nothing calls this directly
no test coverage detected