User contributions for Daviddoria
From KitwarePublic
Jump to navigationJump to search
17 June 2009
- 13:4513:45, 17 June 2009 diff hist +337 VTK/Tutorials/PythonEnvironmentSetup No edit summary
- 13:4213:42, 17 June 2009 diff hist +41 VTK/Tutorials/PythonEnvironmentSetup No edit summary
- 13:4013:40, 17 June 2009 diff hist +360 N VTK/Tutorials/PythonEnvironmentSetup New page: There are two main ways to install VTK - 1) as part of Paraview or 2) stand alone. In the following instructions, I've built Paraview and VTK has been installed as part of that process. I...
- 13:3913:39, 17 June 2009 diff hist −15 ParaView/Python/Getting Started No edit summary
- 13:3913:39, 17 June 2009 diff hist +191 N ParaView/Python/Getting Started New page: To use pvpython, I added the following line to my ~/.bashrc [code] export PYTHONPATH=$PYTHONPATH:/home/doriad/bin/ParaView3/Utilities/VTKPythonWrapping:/home/doriad/bin/ParaView3/bin [/co...
- 13:3813:38, 17 June 2009 diff hist +22 ParaView/PythonRecipes No edit summary
- 13:2713:27, 17 June 2009 diff hist +143 VTK →Example Usage (C++)
13 June 2009
- 21:2521:25, 13 June 2009 diff hist +2,862 N Visualize a Sphere or a VTP File New page: SphereDemo() shows the basics of rendering to a window. VTPDemo shows how to open a vtp file and render it in a window. <source lang="cpp"> #include "vtkQuadric.h" #include "vtkSampleFunc... current
- 21:2521:25, 13 June 2009 diff hist +60 VTK →Example Usage (C++)
- 20:0120:01, 13 June 2009 diff hist +32 VTK →Filters
8 June 2009
- 14:4614:46, 8 June 2009 diff hist +52 VTK →Working with PolyData
- 14:0814:08, 8 June 2009 diff hist +29 VTK →Working with PolyData
3 June 2009
- 12:5112:51, 3 June 2009 diff hist +54 VTK →Other File Types
- 12:1112:11, 3 June 2009 diff hist +13 VTK →Data Structures
13 May 2009
- 13:4513:45, 13 May 2009 diff hist +1,190 ParaView/Python Scripting →Inside Paraview
5 May 2009
- 16:5016:50, 5 May 2009 diff hist +562 ParaView/Python Scripting No edit summary
- 16:3116:31, 5 May 2009 diff hist +559 ParaView/Python Scripting No edit summary
30 April 2009
- 11:0111:01, 30 April 2009 diff hist −43 VTK →Working with PolyData
- 10:5610:56, 30 April 2009 diff hist +256 VTK →Example Usage (C++)
- 10:5210:52, 30 April 2009 diff hist +1,063 VTK/Tutorials/TriangleGeometryPolygon No edit summary
- 10:4210:42, 30 April 2009 diff hist +301 Write a VTP file No edit summary current
- 10:3910:39, 30 April 2009 diff hist +466 VTK/Tutorials/TriangleGeometryOnly No edit summary
- 10:3710:37, 30 April 2009 diff hist +64 Useful Classes No edit summary current
- 10:3610:36, 30 April 2009 diff hist −15 VTK →Example Usage (C++)
- 10:3510:35, 30 April 2009 diff hist +28 N Classes To Help With Examples Classes To Help With Examples moved to Useful Classes current
- 10:3510:35, 30 April 2009 diff hist 0 m Useful Classes Classes To Help With Examples moved to Useful Classes
29 April 2009
- 11:2111:21, 29 April 2009 diff hist +103 VTK →Example Usage (C++)
- 11:1211:12, 29 April 2009 diff hist 0 VTK →Example Usage (C++)
- 11:1211:12, 29 April 2009 diff hist +32 VTK →Example Usage (C++)
25 April 2009
- 16:4616:46, 25 April 2009 diff hist +38 VTK No edit summary
- 14:1114:11, 25 April 2009 diff hist +559 ParaView/Python Scripting →Complete Examples
24 April 2009
- 21:4221:42, 24 April 2009 diff hist +1,415 ParaView/Python Scripting Added screenshot and file conversions examples
17 April 2009
- 19:4819:48, 17 April 2009 diff hist +1,440 N Add Global Information to a VTP file New page: <source lang="cpp"> //add random points (and vertices) to the file vtkSmartPointer<vtkPoints> Points = vtkSmartPointer<vtkPoints>::New(); vtkSmartPointer<vtkCellArray> Vertices = vtkSmar... current
- 19:4619:46, 17 April 2009 diff hist +43 VTK →Example Usage (C++)
13 April 2009
- 23:1123:11, 13 April 2009 diff hist +23 VTK →Example Usage (C++)
12 April 2009
- 15:0015:00, 12 April 2009 diff hist +39 VTK →Example Usage (C++)
11 April 2009
- 13:1213:12, 11 April 2009 diff hist +85 VTK →Example Usage (C++)
- 13:1113:11, 11 April 2009 diff hist +1,005 N Write two cubes to a VTP file New page: <source lang="cpp"> #include <vtkCubeSource.h> void WriteTwoCubes(const string &OutputFilename) { vtkSmartPointer<vtkCubeSource> Cube1 = vtkSmartPointer<vtkCubeSource>::New(); Cube1->S... current
- 13:1013:10, 11 April 2009 diff hist +525 N Write a plane to a VTP file New page: <source lang="cpp"> #include <vtkPlaneSource.h> void WritePlane(const string &OutputFilename) { vtkSmartPointer<vtkPlaneSource> plane = vtkSmartPointer<vtkPlaneSource>::New(); plane->S... current
- 13:0913:09, 11 April 2009 diff hist +521 N Write a sphere to a VTP file New page: <source lang="cpp"> #include <vtkSphereSource.h> void WriteSphere(const string &OutputFilename) { vtkSmartPointer<vtkSphereSource> sphere = vtkSmartPointer<vtkSphereSource>::New(); spher... current
- 13:0813:08, 11 April 2009 diff hist +105 VTK →Example Usage (C++)
- 13:0213:02, 11 April 2009 diff hist +6 VTK →Example Usage
8 April 2009
- 15:1615:16, 8 April 2009 diff hist +87 N Write a VTP file of a triangulated square, each vertex with a different color. Write a VTP file of a triangulated square, each vertex with a different color. moved to Write a file of a triangulated square, each corner with a different color
- 15:1615:16, 8 April 2009 diff hist +85 N Write a VTP file of the four points of square, each with a different color. Write a VTP file of the four points of square, each with a different color. moved to Write a file of the four corners of square, each with a different color
- 15:1515:15, 8 April 2009 diff hist +51 N Write a VTP file of a triangulated square. Write a VTP file of a triangulated square. moved to Write a file of a triangulated square
- 15:1515:15, 8 April 2009 diff hist 0 m VTK/Tutorials/TriangleGeometryPolygon Write a VTP file of a triangulated square. moved to Write a file of a triangulated square
- 15:1515:15, 8 April 2009 diff hist +58 N Write a VTP file of the four points of a square. Write a VTP file of the four points of a square. moved to Write a file of the four corners of a square
- 15:1515:15, 8 April 2009 diff hist 0 m VTK/Tutorials/TriangleGeometryOnly Write a VTP file of the four points of a square. moved to Write a file of the four corners of a square
- 15:1115:11, 8 April 2009 diff hist +39 VTK →Example Usage
- 15:0915:09, 8 April 2009 diff hist +1,874 N Read a VTP file New page: <source lang="cpp"> bool VtpRead(const string &filename, ModelClass &Model) { //get all data from the file vtkSmartPointer<vtkXMLPolyDataReader> reader = vtkSmartPointer<vtkXMLPolyDat...