------------------------------------------------------------------------------
| 147 | |
| 148 | //------------------------------------------------------------------------------ |
| 149 | vtkSpiderPlotActor::~vtkSpiderPlotActor() |
| 150 | { |
| 151 | this->ConnectionHolder->Delete(); |
| 152 | this->ConnectionHolder = nullptr; |
| 153 | |
| 154 | delete[] this->Title; |
| 155 | this->Title = nullptr; |
| 156 | |
| 157 | delete this->Labels; |
| 158 | delete this->Ranges; |
| 159 | this->SetLabelTextProperty(nullptr); |
| 160 | this->SetTitleTextProperty(nullptr); |
| 161 | |
| 162 | this->GlyphSource->Delete(); |
| 163 | |
| 164 | this->Initialize(); |
| 165 | |
| 166 | this->TitleMapper->Delete(); |
| 167 | this->TitleMapper = nullptr; |
| 168 | this->TitleActor->Delete(); |
| 169 | this->TitleActor = nullptr; |
| 170 | |
| 171 | this->WebData->Delete(); |
| 172 | this->WebMapper->Delete(); |
| 173 | this->WebActor->Delete(); |
| 174 | |
| 175 | this->PlotData->Delete(); |
| 176 | this->PlotMapper->Delete(); |
| 177 | this->PlotActor->Delete(); |
| 178 | } |
| 179 | |
| 180 | //------------------------------------------------------------------------------ |
| 181 | void vtkSpiderPlotActor::SetInputConnection(vtkAlgorithmOutput* ao) |
nothing calls this directly
no test coverage detected