Package pyllar :: Module Figure
[hide private]
[frames] | no frames]

Module Figure

source code

The Figure class as well as many wrapper functions for Matlab-style syntax.

Classes [hide private]
  Figure
The figure is the top level window that contains the axes and figure controls.
  FigToolbar
Functions [hide private]
 
gcf()
Get the current figure.
source code
 
gca()
Get the current axes.
source code
 
xlabel(label="")
Set the label on the x axis of the current axes.
source code
 
ylabel(label="")
Set the label on the y axis of the current axes.
source code
 
zlabel(label="")
Set the label on the z axis of the current axes.
source code
 
xlim(lim=[0,0])
Set the limis of the x axis of the current axes.
source code
 
ylim(lim=[0,0])
Set the limis of the y axis of the current axes.
source code
 
zlim(lim=[0,0])
Set the limis of the z axis of the current axes.
source code
Variables [hide private]
  currentFigure = 0
Handle to the current figure window.
  pyllarPath = os.path.split(os.path.join(os.getcwd(), __file__)...
Path of the pillar package.
Function Details [hide private]

gcf()

source code 

Get the current figure.

The current figure will be returned. If no figures are present, one will be created.

gca()

source code 

Get the current axes.

The current axes will be returned. If no axes are present, one will be created.

xlim(lim=[0,0])

source code 

Set the limis of the x axis of the current axes.

Calling this function will override the automatic limit sizing of the axes.

ylim(lim=[0,0])

source code 

Set the limis of the y axis of the current axes.

Calling this function will override the automatic limit sizing of the axes.

zlim(lim=[0,0])

source code 

Set the limis of the z axis of the current axes.

Calling this function will override the automatic limit sizing of the axes.

Variables Details [hide private]

pyllarPath

Path of the pillar package.
Value:
os.path.split(os.path.join(os.getcwd(), __file__)) [0]