Deletion log

From KitwarePublic
Jump to navigationJump to search

Below is a list of the most recent deletions.

Logs
  • 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/Conversions/MutableDirectedGraphToDirectedGraph (content was: "==MutableDirectedGraphToDirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkDirectedGraph.h> int main (int, char *[]) { //create a graph vtkSmartPointer<vtkMutableDirectedGraph> mdg = vtkSmartPointer<vtkMutableDirectedGraph>::New(); //add 4 vertices to the graph vtkIdType v1 = mdg->AddVertex(); vtkIdType v2 = mdg->AddVertex(); vtkIdType v3 = mdg->AddVertex(); vtkIdTy...")