------------------------------------------------------------------------------
| 1763 | |
| 1764 | //------------------------------------------------------------------------------ |
| 1765 | vtkIdType vtkGraph::GetNumberOfElements(int type) |
| 1766 | { |
| 1767 | switch (type) |
| 1768 | { |
| 1769 | case VERTEX: |
| 1770 | return this->GetNumberOfVertices(); |
| 1771 | case EDGE: |
| 1772 | return this->GetNumberOfEdges(); |
| 1773 | } |
| 1774 | return this->Superclass::GetNumberOfElements(type); |
| 1775 | } |
| 1776 | |
| 1777 | //------------------------------------------------------------------------------ |
| 1778 | void vtkGraph::Dump() |