|
- Destroy(self)
- Cleanup
- Linear(self)
- Sets linear scale
- Log(self, minvalue=9.9999999999999995e-07)
- Sets logarithmic scale
Parameters:
minvalue: if on is non-zero sets the displaying value
for all values lass than or equals to zero
- Redraw(self)
- Draws itself
- RemoveFunction(self, name=None)
- Parameters:
name: name of the function to be removed from the drawable.
if none, all are removed
- Save(self, filename, format)
- Parameters:
filename: name of the output file.
format: format to be saved ("PS","PNG","BMP" or "JPG")
- SetEnv(self, xmin, xmax, ymin, ymax, zmin, zmax)
- Sets drawing limits
Parameters:
xmin,xmax: lower,upper values of x axis
ymin,ymax: lower,upper values of y axis
zmin,zmax: lower,upper values of z axis
- SetFunction(self, name, function_pars)
- Parameters:
name: name of the function to be included
function_pars: dictionary with the function properties (see MeshView)
- SetFunctionItem(self, name, item, val)
- Sets "item" of the function named "name" to the value "val"
- SetLabels(self, title_label='', x_label='', y_label='', z_label='')
- Parameters:
title_label: Label on the top of drawing
x_label: Label for x axis
y_label: Label for y axis
z_label: Label for z axis
- SetMeshPlottingMode(self, opt)
- Parameters:
style: "XLines", "YLines" or "Both"
- SetStyle(self, style)
- Parameters:
style: "3dSurface", "SurfaceMesh" or "ShadedSurface"
- SetTrackScrollbars(self, value)
- Parameters:
if value non-zero, scrollbar events promote continuous redrawing.
Otherwise, just when button is released.
- Show(self)
- Displays widget
- __init__(self, parent=None)
- Parameters:
parent: parent widget (a View object)
|