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).
- 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Point (content was: "Category:GeometricObjects This example creates a list of points of length 1. It then retrieves the point. ==Point.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> int main(int, char *[]) { //create a list of points vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); //add a point to the list const float p[3] = {1.0, 2.0, 3.0}; points->InsertNextPoint(p); //retrieve the point double* pout = points->G...")