Section: Visualization Toolkit Graphics Classes
To create an instance of class vtkElevationFilter, simply invoke its constructor as follows
obj = vtkElevationFilter
obj
is an instance of the vtkElevationFilter class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkElevationFilter = obj.NewInstance ()
vtkElevationFilter = obj.SafeDownCast (vtkObject o)
obj.SetLowPoint (double , double , double )
- Define one end of the line (small scalar values). Default is
(0,0,0).
obj.SetLowPoint (double a[3])
- Define one end of the line (small scalar values). Default is
(0,0,0).
double = obj. GetLowPoint ()
- Define one end of the line (small scalar values). Default is
(0,0,0).
obj.SetHighPoint (double , double , double )
- Define other end of the line (large scalar values). Default is
(0,0,1).
obj.SetHighPoint (double a[3])
- Define other end of the line (large scalar values). Default is
(0,0,1).
double = obj. GetHighPoint ()
- Define other end of the line (large scalar values). Default is
(0,0,1).
obj.SetScalarRange (double , double )
- Specify range to map scalars into. Default is [0, 1].
obj.SetScalarRange (double a[2])
- Specify range to map scalars into. Default is [0, 1].
double = obj. GetScalarRange ()
- Specify range to map scalars into. Default is [0, 1].