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:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Line (content was: "This example creates a line. ==Line.cxx== <source lang="cpp"> #include <vtkCellArray.h> #include <vtkPoints.h> #include <vtkLine.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataWriter.h> #include <vtkSmartPointer.h> int main(int, char *[]) { //create two points, P0 and P1 double P0[3] = {1.0, 0.0, 0.0}; double P1[3] = {0.0, 1.0, 0.0}; //add the two poitns to a vtkPoints object vtkSmartPointer<vtkPoints> pts = vtkSmartPointer<vtkPoints>::New(); pts->Inse...")