Ejemplo n.º 1
0
 def testDefaultObjectPointer(self):
     """Test a vtkObject pointer arg with default value of 0."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the stencil parameter set to None
     ipi.Initialize(image, (0,9,0,9,0,9), None)
     # call this method without the stencil parameter
     ipi.Initialize(image, (0,9,0,9,0,9))
Ejemplo n.º 2
0
 def testDefaultInt(self):
     """Simple test of an integer arg with default value."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the threadId parameter set to 0
     ipi.Initialize(image, (0,9,0,9,0,9), None, None, 0)
     # call this method without the threadId parameter
     ipi.Initialize(image, (0,9,0,9,0,9), None, None)
Ejemplo n.º 3
0
 def testDefaultArray(self):
     """Test an array arg with default value of 0."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the parameter set
     ipi.Initialize(image, (0,9,0,9,0,9))
     # call this method without extent parameter
     ipi.Initialize(image)
Ejemplo n.º 4
0
 def testDefaultArray(self):
     """Test an array arg with default value of 0."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the parameter set
     ipi.Initialize(image, (0,9,0,9,0,9))
     # call this method without extent parameter
     ipi.Initialize(image)
Ejemplo n.º 5
0
 def testDefaultObjectPointer(self):
     """Test a vtkObject pointer arg with default value of 0."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the stencil parameter set to None
     ipi.Initialize(image, (0,9,0,9,0,9), None)
     # call this method without the stencil parameter
     ipi.Initialize(image, (0,9,0,9,0,9))
Ejemplo n.º 6
0
 def testDefaultInt(self):
     """Simple test of an integer arg with default value."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the threadId parameter set to 0
     ipi.Initialize(image, (0,9,0,9,0,9), None, None, 0)
     # call this method without the threadId parameter
     ipi.Initialize(image, (0,9,0,9,0,9), None, None)
Ejemplo n.º 7
0
 def testDefaultArray(self):
     """Test an array arg with default value of 0."""
     image = vtk.vtkImageData()
     image.SetExtent(0,9,0,9,0,9)
     image.AllocateScalars(vtk.VTK_UNSIGNED_CHAR, 1)
     ipi = vtk.vtkImagePointIterator()
     # call this method with the parameter set
     ipi.Initialize(image, (0,9,0,9,0,9))
     # call this method without extent parameter
     ipi.Initialize(image)
     # do another method for good measure
     source = vtk.vtkImageGridSource()
     source.SetDataExtent((0,99,0,99,0,0))
     # set the parameter
     source.UpdateExtent((0,50,0,50,0,0))
     # use default parameter value
     source.UpdateExtent()