Skip to content
Snippets Groups Projects
Commit 3529cbec authored by Bill Lorensen's avatar Bill Lorensen
Browse files

ENH: Fixed python errors

parent db760fcd
No related branches found
No related tags found
No related merge requests found
### Description
==Description==
k==Description==
This is a demonstration of how to construct and display geometric objects using the classes derived from vtkCell3D. For each object we specify the points and cell Ids.
From this we create an unstructured grid. In some cases a vtkCellArray is used and the result is added to the unstructured grid, see: '''''MakePolyhedron()''''' and '''''MakeTetrahedron()'''''.
From this we create an unstructured grid. In some cases a vtkCellArray is used and the result is added to the unstructured grid, see: MakePolyhedron() and MakeTetrahedron().
Also demonstrated is the use of vectors to hold the unstructured grids, mappers, actors and renderers.
......
......@@ -24,8 +24,8 @@ colors.SetNumberOfComponents(3)
colors.SetName("Colors")
# Add the colors we created to the colors array
colors.InsertNextTupleValue(red)
colors.InsertNextTupleValue(green)
colors.InsertNextTypedTuple(red)
colors.InsertNextTypedTuple(green)
# Create the first line (between Origin and P0)
line0 = vtk.vtkLine()
......
......@@ -16,10 +16,11 @@ iren.SetRenderWindow(renWin)
cone = vtk.vtkConeSource()
cone.SetResolution(60)
cone.SetCenter(-2,0,0)
cone.Update()
# mapper
coneMapper = vtk.vtkPolyDataMapper()
coneMapper.SetInput(cone.GetOutput())
coneMapper.SetInputData(cone.GetOutput())
# actor
coneActor = vtk.vtkActor()
......
......@@ -11,10 +11,11 @@ iren.SetRenderWindow(renWin)
# create cube
cube = vtk.vtkCubeSource()
cube.Update()
# mapper
cubeMapper = vtk.vtkPolyDataMapper()
cubeMapper.SetInput(cube.GetOutput())
cubeMapper.SetInputData(cube.GetOutput())
# actor
cubeActor = vtk.vtkActor()
......
......@@ -14,11 +14,11 @@ source = vtk.vtkCylinderSource()
source.SetCenter(0,0,0)
source.SetRadius(5.0)
source.SetHeight(7.0)
source.SetResolution(100.0)
source.SetResolution(100)
# mapper
mapper = vtk.vtkPolyDataMapper()
mapper.SetInput(source.GetOutput())
mapper.SetInputConnection(source.GetOutputPort())
# actor
actor = vtk.vtkActor()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment