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 74 75 76 77 78 79 80 81 82 83
|
#!/usr/bin/env python
#test exists to verify that structured grid blanking works as expected
import vtk
from vtk.test import Testing
#make up a toy structured grid with known characteristics
xlim=10
ylim=10
zlim=3
sg = vtk.vtkStructuredGrid()
sg.SetExtent(0,xlim,0,ylim,0,zlim)
#a handy point iterator, calls action() on each point
def forEachPoint(xlim,ylim,zlim, action):
for z in xrange(0,zlim+1):
for y in xrange(0,ylim+1):
for x in xrange(0,xlim+1):
action((x,y,z))
#make geometry
points = vtk.vtkPoints()
def makeCoordinate(pt):
points.InsertNextPoint(pt)
forEachPoint(xlim,ylim,zlim, makeCoordinate)
sg.SetPoints(points)
#make a scalar array
scalars = vtk.vtkDoubleArray()
scalars.SetNumberOfComponents(1)
scalars.SetName("Xcoord")
def makeScalar(pt):
scalars.InsertNextValue(pt[0]+pt[1]+pt[2])
forEachPoint(xlim,ylim,zlim, makeScalar)
sg.GetPointData().SetScalars(scalars)
#blank some arbitrarily chosen cells
numcells = sg.GetNumberOfCells()
if 11 < numcells:
sg.BlankCell(11)
if 64 < numcells:
sg.BlankCell(64)
if 164 < numcells:
sg.BlankCell(164)
for c in xrange(180,261):
if c < sg.GetNumberOfCells():
sg.BlankCell(c)
dsf = vtk.vtkDataSetSurfaceFilter()
dsf.SetInputData(sg)
dsf.Update()
nviscells = dsf.GetOutput().GetNumberOfCells()
if nviscells != 356:
print "Problem"
print "Test expected 356 visible surface polygons but got", \
nviscells
exit(-1)
#render it so we can look at it
mapper = vtk.vtkDataSetMapper()
mapper.SetInputData(sg)
mapper.SetScalarRange(scalars.GetRange())
actor = vtk.vtkActor()
actor.SetMapper(mapper)
ren = vtk.vtkRenderer()
ren.AddActor(actor)
renWin = vtk.vtkRenderWindow()
renWin.SetSize(400, 400)
renWin.AddRenderer(ren)
#set position where we can see most of the blanked cells
cam = ren.GetActiveCamera()
cam.SetClippingRange(14.0456, 45.4716)
cam.SetFocalPoint(5, 5, 1.5)
cam.SetPosition(-19.0905, -6.73006, -6.37738)
cam.SetViewUp(-0.400229, 0.225459, 0.888248)
iren = vtk.vtkRenderWindowInteractor()
iren.SetRenderWindow(renWin)
iren.Initialize()
#iren.Start()
|