------------------------------------------------------------------------------
| 1750 | |
| 1751 | //------------------------------------------------------------------------------ |
| 1752 | vtkFieldData* vtkGraph::GetAttributesAsFieldData(int type) |
| 1753 | { |
| 1754 | switch (type) |
| 1755 | { |
| 1756 | case VERTEX: |
| 1757 | return this->GetVertexData(); |
| 1758 | case EDGE: |
| 1759 | return this->GetEdgeData(); |
| 1760 | } |
| 1761 | return this->Superclass::GetAttributesAsFieldData(type); |
| 1762 | } |
| 1763 | |
| 1764 | //------------------------------------------------------------------------------ |
| 1765 | vtkIdType vtkGraph::GetNumberOfElements(int type) |