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