------------------------------------------------------------------------------
| 202 | |
| 203 | //------------------------------------------------------------------------------ |
| 204 | bool vtkDendrogramItem::IsDirty() |
| 205 | { |
| 206 | if (this->Tree->GetNumberOfVertices() == 0) |
| 207 | { |
| 208 | return false; |
| 209 | } |
| 210 | if (this->MTime > this->DendrogramBuildTime) |
| 211 | { |
| 212 | return true; |
| 213 | } |
| 214 | if (this->PrunedTree->GetMTime() > this->DendrogramBuildTime) |
| 215 | { |
| 216 | return true; |
| 217 | } |
| 218 | if (this->Tree->GetMTime() > this->DendrogramBuildTime) |
| 219 | { |
| 220 | return true; |
| 221 | } |
| 222 | return false; |
| 223 | } |
| 224 | |
| 225 | //------------------------------------------------------------------------------ |
| 226 | void vtkDendrogramItem::RebuildBuffers() |
no test coverage detected