Skip to content
Snippets Groups Projects
Commit 8f29aa2d authored by dcbr's avatar dcbr
Browse files

Properly update PlotPoints cache.

This commit adds the UpdateCache method to the vtkPlotPoints class,
which will properly update its cache when necessary
(e.g. when the log scale is activated on one of its axes).
parent 1af22bcc
No related branches found
No related tags found
No related merge requests found
......@@ -637,6 +637,14 @@ bool vtkPlotPoints::GetDataArrays(vtkTable* table, vtkDataArray* array[2])
return true;
}
//------------------------------------------------------------------------------
void vtkPlotPoints::UpdateCache()
{
// Update has the necessary checks in place and will update the
// ValidPointMask and TableCache when necessary.
this->Update();
}
//------------------------------------------------------------------------------
bool vtkPlotPoints::UpdateTableCache(vtkTable* table)
{
......
......@@ -193,6 +193,11 @@ protected:
*/
bool GetDataArrays(vtkTable* table, vtkDataArray* array[2]);
/**
* Update the table cache if necessary.
*/
virtual void UpdateCache() override;
/**
* Update the table cache.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment