2004-05-25 22:13:04 -04:00
|
|
|
"""
|
|
|
|
The Object Graphics Library provides for simple drawing and manipulation
|
|
|
|
of 2D objects.
|
|
|
|
"""
|
|
|
|
|
2004-06-04 16:12:01 -04:00
|
|
|
from _basic import *
|
|
|
|
from _diagram import *
|
|
|
|
from _canvas import *
|
|
|
|
from _lines import *
|
|
|
|
from _bmpshape import *
|
|
|
|
from _divided import *
|
|
|
|
from _composit import *
|
2004-08-31 10:54:13 -04:00
|
|
|
from _drawn import *
|
2004-06-04 16:12:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Set things up for documenting with epydoc. The __docfilter__ will
|
2004-06-18 12:32:03 -04:00
|
|
|
# prevent some things from being documented, and anything in __all__
|
2004-06-04 16:12:01 -04:00
|
|
|
# will appear to actually exist in this module.
|
|
|
|
import wx._core as _wx
|
|
|
|
__docfilter__ = _wx.__DocFilter(globals())
|
|
|
|
__all__ = [name for name in dir() if not name.startswith('_')]
|
|
|
|
|