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
  • 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/RemoveVertices (content was: "==RemoveVertices.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkXMLPolyDataReader.h> #include <vtkXMLPolyDataWriter.h> #include <vtkSmartPointer.h> #include <vtkCellData.h> #include <vtkCellArray.h> #include <vtkPolyData.h> int main ( int argc, char *argv[] ) { if (argc < 2) { std::cout << "Usage: " << argv[0] << " filename.vtp" << std::endl; return EXIT_FAILURE; } std::string filename = argv[1]; // Read all the data from the file vtkSm...")