All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/RemoveIsolatedVertices (content was: "==RemoveIsolatedVertices.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMutableUndirectedGraph.h> #include <vtkPoints.h> #include <vtkRemoveIsolatedVertices.h> int main(int, char *[]) { vtkSmartPointer<vtkMutableUndirectedGraph> g = vtkSmartPointer<vtkMutableUndirectedGraph>::New(); // Create 3 vertices vtkIdType v1 = g->AddVertex(); vtkIdType v2 = g->AddVertex(); g->AddVertex(); g->AddEdge ( v1, v2 ); std::cout << "Graph has...")