Package topo :: Package plotting
[hide private]
[frames] | no frames]

Source Code for Package topo.plotting

 1  """ 
 2  Topographica plotting subsystem. 
 3   
 4  Two-dimensional plots are generated by generic classes for visualizing 
 5  Sheets in any model.  The plots are often viewed in a GUI, but they 
 6  can potentially also be rendered to bitmapped images to save as files, 
 7  or to display on other types of interfaces such as web servers. 
 8   
 9  The usual way that a plot is specified is using a PlotGroupTemplate, 
10  which specifies a group of related plots.  A PlotGroupTemplate is a 
11  list of PlotTemplates.  Each PlotTemplate will normally produce up to 
12  one plot per Sheet in the network, though in special cases it can 
13  produce more.  The definitions for each of these templates can be done 
14  in advance of defining any particular model, and rarely require any 
15  editing for any particular model. 
16   
17  For more information, see the various modules in this package. 
18   
19  $Id: __init__.py 6510 2007-09-24 13:20:08Z ceball $ 
20  """ 
21  __version__='$Revision: 6510 $' 
22  __all__ = ['bitmap','plot','palette','plotgroup','plotfilesaver'] 
23