------------------------------------------------------------------------------
| 793 | |
| 794 | //------------------------------------------------------------------------------ |
| 795 | bool vtkPlotBar::CacheRequiresUpdate() |
| 796 | { |
| 797 | return this->Superclass::CacheRequiresUpdate() || |
| 798 | (this->XAxis && this->LogX != this->XAxis->GetLogScaleActive()) || |
| 799 | (this->YAxis && this->LogY != this->YAxis->GetLogScaleActive()) || |
| 800 | (this->LookupTable && this->LookupTable->GetMTime() > this->BuildTime); |
| 801 | } |
| 802 | |
| 803 | //------------------------------------------------------------------------------ |
| 804 | bool vtkPlotBar::UpdateCache() |