------------------------------------------------------------------------------
| 104 | |
| 105 | //------------------------------------------------------------------------------ |
| 106 | bool vtkPlot::CacheRequiresUpdate() |
| 107 | { |
| 108 | return (this->MTime > this->BuildTime) || |
| 109 | (this->XAxis && this->XAxis->GetMTime() > this->BuildTime) || |
| 110 | (this->YAxis && this->YAxis->GetMTime() > this->BuildTime); |
| 111 | } |
| 112 | |
| 113 | //------------------------------------------------------------------------------ |
| 114 | bool vtkPlot::PaintLegend(vtkContext2D*, const vtkRectf&, int) |