VTK/Examples/Cxx/Graphs/OutEdgeIterator: Revision history

From KitwarePublic
Jump to navigationJump to search

There is no edit history for this page.

This page does not exist. The deletion, protection, and move log for the page are provided below for reference.

  • 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/OutEdgeIterator (content was: "==OutEdgeIterator.cxx== <source lang="cpp"> #include <vtkMutableUndirectedGraph.h> #include <vtkMutableDirectedGraph.h> #include <vtkSmartPointer.h> #include <vtkOutEdgeIterator.h> static void Undirected(); static void Directed(); int main(int, char *[]) { Undirected(); Directed(); return EXIT_SUCCESS; } void Undirected() { vtkSmartPointer<vtkMutableUndirectedGraph> g = vtkSmartPointer<vtkMutableUndirectedGraph>::New(); // Create a graph vtkIdType v0 =...")