surfaces/surf/test/__init__.py

14 lines
317 B
Python

from .vertex import TestVertex
from .edge import TestEdge
from .polymesh import TestPM
# I only use the convoluted Class.__name__ to pass pyflakes (it complains about
# importing and not using the modules otherwise ...
__all__ = [
TestVertex.__name__,
TestEdge.__name__,
TestPM.__name__,
]