Special:RecentChanges
From KitwarePublic
Track the most recent changes to the wiki on this page.
Legend: N - new page, m - minor edit, b - bot edit.
27 May 2012
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/Point; 06:18 . . (+979) . . Amaclean (Talk | contribs) (Created page with "==Point.py== <source lang="python"> #!/usr/bin/env python import vtk # Create the geometry of a point (the coordinate) points = vtk.vtkPoints() p = [1.0, 2.0, 3.0] # Create th...")
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/PlatonicSolid; 06:05 . . (-36) . . Amaclean (Talk | contribs) (→PlatonicSolid.py: )
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/PlanesIntersection; 06:04 . . (+3) . . Amaclean (Talk | contribs) (→PlanesIntersection: )
- (diff | hist) . . m VTK/Examples/Python; 06:02 . . (+40) . . Amaclean (Talk | contribs) (→Display: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/PlatonicSolid; 05:57 . . (+4,990) . . Amaclean (Talk | contribs) (Created page with "Display all five Platonic solids in a grid. ==PlatonicSolid.py== <source lang="python"> #!/usr/bin/env python import vtk class PlatonicSolids(): def PlatonicSolids(sel...")
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/PlanesIntersection; 04:42 . . (+834) . . Amaclean (Talk | contribs) (Created page with "==PlanesIntersection== <source lang="python"> #!/usr/bin/env python import vtk sphereSource = vtk.vtkSphereSource() sphereSource.Update() bounds = [0 for i in range(6)] sphere...")
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/Arrow; 04:34 . . (+17) . . Amaclean (Talk | contribs)
- (diff | hist) . . VTK/Examples/Python; 04:29 . . (+85) . . Amaclean (Talk | contribs) (→Display: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/Planes; 04:26 . . (+1,660) . . Amaclean (Talk | contribs) (Created page with "==Planes.py== <source lang="python"> #!/usr/bin/env python import vtk # Use this variable to select one of the two methods below. SELECT_FRUSTUM_METHOD = True if SELECT_FRUSTU...")
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/Arrow; 04:22 . . (+1) . . Amaclean (Talk | contribs) (→Arrow.py: )
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/OrientedArrow; 02:00 . . (+1) . . Amaclean (Talk | contribs) (→OrientedArrow.py: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/OrientedArrow; 01:59 . . (+4,370) . . Amaclean (Talk | contribs) (Created page with "==OrientedArrow.py== This example illustrates how to create and display an arrow that passes through two points. It demonstrates two different ways to apply the transform: # Use...")
26 May 2012
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/LongLine; 23:37 . . (+1,355) . . Amaclean (Talk | contribs) (Created page with "==LongLine.py== <source lang="python"> #!/usr/bin/env python import vtk # Create five points. origin = [0.0, 0.0, 0.0] p0 = [1.0, 0.0, 0.0] p1 = [0.0, 1.0, 0.0] p2 = [0.0, 1.0...")
- (diff | hist) . . m VTK/Examples/Cxx/GeometricObjects/LongLine; 23:36 . . (-52) . . Amaclean (Talk | contribs) (→LongLine.cxx: )
- (diff | hist) . . m VTK/Examples/Cxx/GeometricObjects/LongLine; 23:32 . . (-89) . . Amaclean (Talk | contribs) (→LongLine.cxx: )
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/ColoredLines; 23:09 . . (+20) . . Amaclean (Talk | contribs)
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/GeometricObjectsDemo; 23:07 . . (+28) . . Amaclean (Talk | contribs)
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/Display/PolygonIntersection; 23:06 . . (+27) . . Amaclean (Talk | contribs)
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/Frustum; 23:04 . . (+1,025) . . Amaclean (Talk | contribs) (Created page with "==Frustum.py== <source lang="python"> #!/usr/bin/env python import vtk camera = vtk.vtkCamera() planesArray = [0 for i in range(24)] camera.GetFrustumPlanes(1, planesArray) p...")
- (diff | hist) . . m VTK/Examples/Python; 22:39 . . (0) . . Amaclean (Talk | contribs) (→Geometric Objects: )
- (diff | hist) . . ParaView; 14:58 . . (+25) . . Utkarsh (Talk | contribs) (→GUI Features: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/ColoredLines; 11:11 . . (+2,240) . . Amaclean (Talk | contribs) (Created page with "<source lang="python"> #!/usr/bin/env python import vtk # Create three points. Join (Origin and P0) with a red line and # (Origin and P1) with a green line origin = [0.0, 0.0, ...")
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/GeometricObjectsDemo; 10:42 . . (+3,603) . . Amaclean (Talk | contribs) (Created page with "<source lang="python"> #!/usr/bin/env python import vtk class GeometricObjects(): def GeometricObjects(self): GeometricObjects = list() Geomet...")
- (diff | hist) . . m VTK/Examples/Python/GeometricObjects/ParametricObjects; 10:39 . . (-1) . . Amaclean (Talk | contribs) (→ParametricObjectsDemo.py: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/PolygonIntersection; 10:18 . . (+882) . . Amaclean (Talk | contribs) (Created page with "<source lang="python"> #!/usr/bin/env python import vtk # Create a square in the x-y plane. points = vtk.vtkPoints() points.InsertNextPoint(0.0, 0.0, 0.0) points.InsertNextPoin...")
25 May 2012
- (diff | hist) . . VTK/Examples/Python/GeometricObjects/Display/PolyLine; 16:09 . . (+48) . . Jochen (Talk | contribs) (→Polyline.py: )
- (Upload log); 16:07 . . Jochen (Talk | contribs) uploaded "File:Vtk examples python geometricobjects display polyline.png" (closed polyline through several ordered points)
- (Upload log); 13:12 . . Jochen (Talk | contribs) uploaded a new version of "File:Polyline.png"
- (diff | hist) . . VTK/Examples/Python; 13:08 . . (+773) . . Amaclean (Talk | contribs) (→Geometric Objects: )
- (diff | hist) . . VTK/Examples/Python/GeometricObjects/ParametricObjects; 13:07 . . (+258) . . Amaclean (Talk | contribs) (→ParametricObjectsDemo.py: )
- (diff | hist) . . VTK/Examples/Python/GeometricObjects/Display/PolyLine; 12:57 . . (+58) . . Jochen (Talk | contribs)
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/ParametricObjects; 12:46 . . (+5,447) . . Amaclean (Talk | contribs) (Created page with "==ParametricObjectsDemo.py== <source lang="python"> #!/usr/bin/env python import vtk import random class ParametricObjects(): def ParametricObjects(self): ...")
- (Upload log); 12:39 . . Jochen (Talk | contribs) uploaded "File:Polyline.png"
- (diff | hist) . . CMake FAQ; 12:02 . . (+31) . . Brad.king (Talk | contribs) (→Why are libraries linked to my shared library included when something links to it?: )
24 May 2012
- (diff | hist) . . VTK/Examples/Python; 19:15 . . (0) . . Jochen (Talk | contribs) (→Display: )
- (diff | hist) . . VTK/Examples/Python/GeometricObjects/Display/PolyLine; 19:14 . . (+1) . . Jochen (Talk | contribs) (→Polygon.py: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/PolyLine; 19:14 . . (+3,382) . . Jochen (Talk | contribs) (Created page with "==Polygon.py== <source lang="python"> # This example demonstrates how to create a polyline through several ordered points. import vtk import math # vtkPoints represents 3D poin...")
- (diff | hist) . . VTK/Examples/Python/GeometricObjects/Display/Polygon; 19:13 . . (-3,381) . . Jochen (Talk | contribs) (wrong category, moved to polyline)
- (diff | hist) . . VTK/Examples/Python; 19:09 . . (+81) . . Jochen (Talk | contribs) (→Display: )
- (diff | hist) . . N VTK/Examples/Python/GeometricObjects/Display/Polygon; 19:05 . . (+3,381) . . Jochen (Talk | contribs) (Created page with "==Polygon.py== <source lang="python"> # This example demonstrates how to create a polygon through several ordered points. import vtk import math # vtkPoints represents 3D point...")
- (diff | hist) . . m VTK/Examples/Python; 17:52 . . (+13) . . Jochen (Talk | contribs) (added missing category title and subtitle for Geometric Objects/Display)
- (diff | hist) . . m VTK/Examples/Python; 17:47 . . (+19) . . Jochen (Talk | contribs)
- (diff | hist) . . Nm User talk:Jochen; 17:25 . . (+236) . . Matthew.bowman (Talk | contribs) (Welcome!)
- (diff | hist) . . Nm User:Jochen; 17:25 . . (+121) . . Matthew.bowman (Talk | contribs) (Creating user page with biography of new user.)
- (User creation log); 17:25 . . Matthew.bowman (Talk | contribs) created new account User:Jochen
- (diff | hist) . . N VES/Point Cloud Library; 04:47 . . (+1,206) . . Patmarion (Talk | contribs) (Created page with "=Introduction= This page describes how to compile and develop with Point Cloud Library on Android and iOS, in conjunction with VTK, VES, and Kiwi = Getting Started = Make sure...")
- (diff | hist) . . VES/Developers Guide; 04:38 . . (+97) . . Patmarion (Talk | contribs)
23 May 2012
- (diff | hist) . . m VTK; 20:37 . . (-11) . . Dgobbi (Talk | contribs) (→VTK 5.10 (imminent): )
- (diff | hist) . . Nm User:Ozgurguler; 20:18 . . (+287) . . WikiSysop (Talk | contribs) (Creating user page with biography of new user.)
- (diff | hist) . . Nm User talk:Ozgurguler; 20:18 . . (+226) . . WikiSysop (Talk | contribs) (Welcome!)