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

Method Update

Charts/Core/vtkScatterPlotMatrix.cxx:388–403  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

386}
387
388void vtkScatterPlotMatrix::Update()
389{
390 if (this->Private->VisibleColumnsModified)
391 {
392 // We need to handle layout changes due to modified visibility.
393 // Build up our histograms data before updating the layout.
394 PopulateHistograms(
395 this->Input, this->Private->Histogram, this->VisibleColumns, this->NumberOfBins);
396 this->UpdateLayout();
397 this->Private->VisibleColumnsModified = false;
398 }
399 else if (this->GetMTime() > this->LayoutUpdatedTime)
400 {
401 this->UpdateLayout();
402 }
403}
404
405bool vtkScatterPlotMatrix::Paint(vtkContext2D* painter)
406{

Callers 2

PaintMethod · 0.95
AdvanceAnimationMethod · 0.95

Calls 3

UpdateLayoutMethod · 0.95
PopulateHistogramsFunction · 0.85
GetMTimeMethod · 0.45

Tested by

no test coverage detected