------------------------------------------------------------------------------
| 30 | |
| 31 | //------------------------------------------------------------------------------ |
| 32 | vtkTransform::~vtkTransform() |
| 33 | { |
| 34 | this->SetInput(nullptr); |
| 35 | |
| 36 | if (this->Concatenation) |
| 37 | { |
| 38 | this->Concatenation->Delete(); |
| 39 | } |
| 40 | if (this->Stack) |
| 41 | { |
| 42 | this->Stack->Delete(); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | //------------------------------------------------------------------------------ |
| 47 | void vtkTransform::PrintSelf(ostream& os, vtkIndent indent) |