2016-03-15 19:12:39 -07:00
|
|
|
"""
|
|
|
|
Shapes for use with the Pattern class, as well as the Shape abstract class from
|
|
|
|
which they are derived.
|
|
|
|
"""
|
|
|
|
|
2023-02-23 11:25:40 -08:00
|
|
|
from .shape import Shape, normalized_shape_tuple, DEFAULT_POLY_NUM_VERTICES
|
2016-03-15 19:12:39 -07:00
|
|
|
|
|
|
|
from .polygon import Polygon
|
|
|
|
from .circle import Circle
|
|
|
|
from .ellipse import Ellipse
|
|
|
|
from .arc import Arc
|
2016-10-19 16:52:28 -07:00
|
|
|
from .text import Text
|
2019-04-20 15:25:19 -07:00
|
|
|
from .path import Path
|