VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Plane: Revision history

From KitwarePublic
Jump to navigationJump to search

There is no edit history for this page.

This page does not exist. The deletion, protection, and move log for the page are provided below for reference.

  • 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...")