------------------------------------------------------------------------------
| 178 | |
| 179 | //------------------------------------------------------------------------------ |
| 180 | bool vtkDendrogramItem::Paint(vtkContext2D* painter) |
| 181 | { |
| 182 | if (this->Tree->GetNumberOfVertices() == 0) |
| 183 | { |
| 184 | return true; |
| 185 | } |
| 186 | |
| 187 | this->PrepareToPaint(painter); |
| 188 | this->PaintBuffers(painter); |
| 189 | this->PaintChildren(painter); |
| 190 | return true; |
| 191 | } |
| 192 | |
| 193 | //------------------------------------------------------------------------------ |
| 194 | void vtkDendrogramItem::PrepareToPaint(vtkContext2D* painter) |
nothing calls this directly
no test coverage detected