VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Polygon: 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:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Polygon (content was: "This example creates four points and a polygon on the points. They MUST be specified in counter-clockwise order. ==Polygon.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolygon.h> #include <vtkXMLPolyDataWriter.h> #include <vtkCellArray.h> #include <vtkPolyData.h> int main(int, char *[]) { //Create four points vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); points->InsertNextPoint(0.0, 0.0, 0.0); points->InsertNextPoin...")