------------------------------------------------------------------------------
| 192 | |
| 193 | //------------------------------------------------------------------------------ |
| 194 | void vtkDendrogramItem::PrepareToPaint(vtkContext2D* painter) |
| 195 | { |
| 196 | if (this->IsDirty()) |
| 197 | { |
| 198 | this->RebuildBuffers(); |
| 199 | } |
| 200 | this->ComputeLabelWidth(painter); |
| 201 | } |
| 202 | |
| 203 | //------------------------------------------------------------------------------ |
| 204 | bool vtkDendrogramItem::IsDirty() |
no test coverage detected