1 """
2 Sheet classes.
3
4 A Sheet is a two-dimensional arrangement of processing units,
5 typically modeling a neural region or a subset of cells in a neural
6 region. Any new Sheet classes added to this directory will
7 automatically become available for any model.
8
9 $Id: __init__.py 9021 2008-08-27 14:12:06Z jbednar $
10 """
11 __version__='$Revision: 9021 $'
12
13
14 import os,fnmatch
15 from basic import *
16 __all__ = basic.__all__ + [f.split('.py')[0] for f in os.listdir(__path__[0]) if fnmatch.fnmatch(f,'[!._]*.py')]
17 del f,os,fnmatch
18
19
20 from topo.base.sheet import BoundingBox
21