User contributions for Daviddoria
From KitwarePublic
Jump to navigationJump to search
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...
- 15:0915:09, 8 April 2009 diff hist +2,149 N Write a VTP file New page: <source lang="cpp"> bool VtpWrite(ModelClass &Model, const string &Filename) { if(Model.Colors.size() == 0) { for(unsigned int i = 0; i < Model.Points.size(); i++) Model.Colors.pus...
- 15:0815:08, 8 April 2009 diff hist −48 VTK →Example Usage
- 15:0715:07, 8 April 2009 diff hist +202 VTK →Example Usage
- 15:0615:06, 8 April 2009 diff hist +787 N VTK/Tutorials/TriangleGeometryPolygon New page: <source lang="cpp"> void TestWriteTriSquare(const string &OutputFile, const char FileType) { //setup points vector<Point> Points; Points.push_back(Point(-1, 1, 0)); Points.push_back(P...
- 15:0415:04, 8 April 2009 diff hist +208 N Useful Classes New page: http://www.engineeringnotes.net/VTKClasses/Color.h http://www.engineeringnotes.net/VTKClasses/Color.cpp http://www.engineeringnotes.net/VTKClasses/Model.h http://www.engineeringnotes.ne...
- 15:0115:01, 8 April 2009 diff hist +36 VTK →Example Usage
- 15:0015:00, 8 April 2009 diff hist +30 VTK/Tutorials/TriangleGeometryOnly No edit summary
- 14:5714:57, 8 April 2009 diff hist +450 N VTK/Tutorials/TriangleGeometryOnly New page: void TestWritePointSquare(const string &OutputFile, const char FileType) { //setup points vector<Point> Points; Points.push_back(Point(-1, 1, 0)); Points.push_back(Point(1, 1, 0)); ...
- 14:5314:53, 8 April 2009 diff hist +35 VTK →Example Usage
- 14:5214:52, 8 April 2009 diff hist +291 VTK No edit summary