]>
Commit | Line | Data |
---|---|---|
f847103a RD |
1 | """ |
2 | The Object Graphics Library provides for simple drawing and manipulation | |
3 | of 2D objects. | |
4 | """ | |
5 | ||
b2f6eb06 RD |
6 | from _basic import * |
7 | from _diagram import * | |
8 | from _canvas import * | |
9 | from _lines import * | |
10 | from _bmpshape import * | |
11 | from _divided import * | |
12 | from _composit import * | |
79609e6f | 13 | from _drawn import * |
b2f6eb06 RD |
14 | |
15 | ||
16 | # Set things up for documenting with epydoc. The __docfilter__ will | |
a2df8090 | 17 | # prevent some things from being documented, and anything in __all__ |
b2f6eb06 RD |
18 | # will appear to actually exist in this module. |
19 | import wx._core as _wx | |
20 | __docfilter__ = _wx.__DocFilter(globals()) | |
21 | __all__ = [name for name in dir() if not name.startswith('_')] | |
22 |