Package pyllar
[hide private]
[frames] | no frames]

Source Code for Package pyllar

 1  """ Pyllar 3D plotting package.
 
 2  
 
 3  Pyllar offers dynamic 3D plotting with an easy to use interface.
 
 4  Both object oriented and procedural programming paradigms can
 
 5  be used to easily add 3D plots to anything from simple scripts to
 
 6  complex applications.
 
 7  
 
 8  Author: Andy Selvig
 
 9  """ 
10  
 
11  # load Pyllar modules
 
12  from Figure import Figure, gca, gcf, xlabel, xlim, ylabel, ylim, zlabel, zlim 
13  from Axes import Axes 
14  from Plottable import Plottable 
15  from Cylinder import Cylinder 
16  from Cone import Cone 
17  from Sphere import Sphere 
18  from Cube import Cube 
19  from Plot3 import Plot3, plot3 
20  from Mesh import Mesh 
21  from Utils import  * 
22  from wxVTKRenderWindowInteractor import wxVTKRenderWindowInteractor 
23  from wxVTKRenderWindow import wxVTKRenderWindow 
24