------------------------------------------------------------------------------
| 21 | |
| 22 | //------------------------------------------------------------------------------ |
| 23 | vtkGeneralTransform::~vtkGeneralTransform() |
| 24 | { |
| 25 | this->SetInput(nullptr); |
| 26 | |
| 27 | if (this->Concatenation) |
| 28 | { |
| 29 | this->Concatenation->Delete(); |
| 30 | } |
| 31 | if (this->Stack) |
| 32 | { |
| 33 | this->Stack->Delete(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | //------------------------------------------------------------------------------ |
| 38 | void vtkGeneralTransform::PrintSelf(ostream& os, vtkIndent indent) |