Add all files to repository
This commit is contained in:
commit
5bf486ac81
19 changed files with 1998 additions and 0 deletions
14
masque/shapes/__init__.py
Normal file
14
masque/shapes/__init__.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
"""
|
||||
Shapes for use with the Pattern class, as well as the Shape abstract class from
|
||||
which they are derived.
|
||||
"""
|
||||
|
||||
from .shape import Shape, normalized_shape_tuple, DEFAULT_POLY_NUM_POINTS
|
||||
|
||||
from .polygon import Polygon
|
||||
from .circle import Circle
|
||||
from .ellipse import Ellipse
|
||||
from .arc import Arc
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue