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:02, 28 April 2021 Cquammen talk contribs deleted page VTK/ExamplesBoneyard/Cxx/PolyData/AddLineToPolydata (content was: "This example shows how to add a line to a polydata. ==AddLineToPolydata.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCellArray.h> #include <vtkPoints.h> #include <vtkLine.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataWriter.h> int main(int, char *[]) { // Create two points double p0[3]; p0[0] = 1; p0[1] = 0; p0[2] = 0; double p1[3]; p1[0] = 0; p1[1] = 1; p1[2] = 0; // Add the two poitns to a vtkPoints object vtkSmartPoi...")