Metadata-Version: 2.1
Name: strawberrypy
Version: 0.0.5
Summary: Graphical animation module.
Home-page: https://github.com/Spatial-Innovations/strawberrypy
Author: Spatial Innovations
Author-email: spatialinnovations@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: Pillow
Requires-Dist: numpy
Requires-Dist: opencv-python
Requires-Dist: pygame

# StrawberryPy
### Graphical animation module.

## How To Use
### Basic elements
* Every animation needs an scene. You can declare a scene variable like this: `scene = strawberrypy.Scene2D((resX, resY), fps)`
* Next, append layers to the engine: `scene.AddLayer(layer)` The layers will be rendered in order, with the first layer on the bottom.
* Layers can be declared like this: `layer = strawberrypy.Layer()`
* Layers contain shapes, added like this: `layer.Add(strawberrypy.shapes.(some shape))`

### Avaliable shapes
* Polygon: `strawberrypy.shapes.Polygon(((vert1X, vert1Y), (vert2X, vert2Y)), (R, G, B), borderWidth)`
* Circle: `strawberrypy.shapes.Circle((centerX, centerY), radius, (R, G, B), borderWidth)`


