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/Plane (content was: "This example creates a plane. ==Plane.cxx== <source lang="cpp"> #include <vtkXMLPolyDataWriter.h> #include <vtkPlaneSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> int main(int, char *[]) { vtkSmartPointer<vtkPlaneSource> plane = vtkSmartPointer<vtkPlaneSource>::New(); plane->SetCenter(1.0, 0.0, 0.0); plane->SetNormal(1.0, 0.0, 0.0); vtkPolyData* pdata = plane->GetOutput(); //write the file vtkSmartPointer<vtkXMLPolyDataWriter> writer...")