| 367 | vtkObjectFactoryNewMacro(vtkScatterPlotMatrix); |
| 368 | |
| 369 | vtkScatterPlotMatrix::vtkScatterPlotMatrix() |
| 370 | : NumberOfBins(10) |
| 371 | , NumberOfFrames(25) |
| 372 | , LayoutUpdatedTime(0) |
| 373 | { |
| 374 | this->Private = new PIMPL; |
| 375 | this->TitleProperties = vtkSmartPointer<vtkTextProperty>::New(); |
| 376 | this->TitleProperties->SetFontSize(12); |
| 377 | this->SelectionMode = vtkContextScene::SELECTION_DEFAULT; |
| 378 | this->ActivePlot = vtkVector2i(0, -2); |
| 379 | this->ActivePlotValid = false; |
| 380 | this->Animating = false; |
| 381 | } |
| 382 | |
| 383 | vtkScatterPlotMatrix::~vtkScatterPlotMatrix() |
| 384 | { |
nothing calls this directly
no test coverage detected