| 1234567891011 |
- """
- Pysketcher is a simple tool which allows you to create
- sketches of, e.g., mechanical systems in Python.
- """
- from __future__ import unicode_literals
- from __future__ import print_function
- from __future__ import division
- from __future__ import absolute_import
- from builtins import *
- from .shapes import *
|