MCPcopy Create free account
hub / github.com/Kitware/VTK / SetSelectionMode

Method SetSelectionMode

Charts/Core/vtkScatterPlotMatrix.cxx:1850–1864  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1848}
1849//------------------------------------------------------------------------------
1850void vtkScatterPlotMatrix::SetSelectionMode(int selMode)
1851{
1852 if (this->SelectionMode == selMode || selMode < vtkContextScene::SELECTION_DEFAULT ||
1853 selMode > vtkContextScene::SELECTION_TOGGLE)
1854 {
1855 return;
1856 }
1857 this->SelectionMode = selMode;
1858 if (this->Private->BigChart)
1859 {
1860 this->Private->BigChart->SetSelectionMode(selMode);
1861 }
1862
1863 this->Modified();
1864}
1865
1866//------------------------------------------------------------------------------
1867void vtkScatterPlotMatrix::SetSize(const vtkVector2i& size)

Calls 1

ModifiedMethod · 0.45

Tested by 3

TestLinePlotSelection2Function · 0.64
TestLinePlotSelectionFunction · 0.64