1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#!/usr/bin/env python
import vtk
from vtk.test import Testing
from vtk.util.misc import vtkGetDataRoot
VTK_DATA_ROOT = vtkGetDataRoot()
# This example demonstrates the use of the linear extrusion filter and
# the USA state outline vtk dataset. It also tests the triangulation filter.
# Create the RenderWindow, Renderer and both Actors
ren1 = vtk.vtkRenderer()
renWin = vtk.vtkRenderWindow()
renWin.AddRenderer(ren1)
iren = vtk.vtkRenderWindowInteractor()
iren.SetRenderWindow(renWin)
# create pipeline - read data
#
reader = vtk.vtkPolyDataReader()
reader.SetFileName(VTK_DATA_ROOT + "/Data/usa.vtk")
# okay, now create some extrusion filters with actors for each US state
math = vtk.vtkMath()
i = 0
while i < 51:
idx = str(i)
exec("extractCell" + idx + " = vtk.vtkGeometryFilter()")
eval("extractCell" + idx).SetInputConnection(reader.GetOutputPort())
eval("extractCell" + idx).CellClippingOn()
eval("extractCell" + idx).SetCellMinimum(i)
eval("extractCell" + idx).SetCellMaximum(i)
exec("tf" + idx + " = vtk.vtkTriangleFilter()")
eval("tf" + idx).SetInputConnection(
eval("extractCell" + idx).GetOutputPort())
exec("extrude" + idx + " = vtk.vtkLinearExtrusionFilter()")
eval("extrude" + idx).SetInputConnection(
eval("tf" + idx).GetOutputPort())
eval("extrude" + idx).SetExtrusionType(1)
eval("extrude" + idx).SetVector(0, 0, 1)
eval("extrude" + idx).CappingOn()
eval("extrude" + idx).SetScaleFactor(math.Random(1, 10))
exec("mapper" + idx + " = vtk.vtkPolyDataMapper()")
eval("mapper" + idx).SetInputConnection(
eval("extrude" + idx).GetOutputPort())
exec("actor" + idx + " = vtk.vtkActor()")
eval("actor" + idx).SetMapper(eval("mapper" + idx))
eval("actor" + idx).GetProperty().SetColor(math.Random(0, 1),
math.Random(0, 1), math.Random(0, 1))
ren1.AddActor(eval("actor" + idx))
i += 1
ren1.SetBackground(1, 1, 1)
renWin.SetSize(500, 250)
cam1 = ren1.GetActiveCamera()
cam1.SetClippingRange(10.2299, 511.497)
cam1.SetPosition(-119.669, -25.5502, 79.0198)
cam1.SetFocalPoint(-115.96, 41.6709, 1.99546)
cam1.SetViewUp(-0.0013035, 0.753456, 0.657497)
# render the image
#
renWin.Render()
iren.Initialize()
#iren.Start()
|