MCPcopy Create free account
hub / github.com/Kitware/VTK / Paint

Method Paint

Views/Infovis/vtkDendrogramItem.cxx:180–191  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

178
179//------------------------------------------------------------------------------
180bool 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//------------------------------------------------------------------------------
194void vtkDendrogramItem::PrepareToPaint(vtkContext2D* painter)

Callers

nothing calls this directly

Calls 4

PrepareToPaintMethod · 0.95
PaintBuffersMethod · 0.95
GetNumberOfVerticesMethod · 0.80
PaintChildrenMethod · 0.80

Tested by

no test coverage detected