Metadata-Version: 2.1
Name: planefigures
Version: 0.1.2
Summary: A turtle based package that makes drawing common geometric plane shapes a breeze.
Home-page: https://github.com/OthnielDona/planefigures
Author: Othniel Dona Monote
Author-email: othnieldona@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# planefigures
`planefigures` is a python package based on the [turtle library](https://docs.python.org/3.5/library/turtle.html). It takes the pain out of drawing plain shapes.

## Installation
```bash
pip install planefigures
```
Python 3 is supported.

## Example
Try out this little peace of code and be amazed.
```python
import figures
import turtle

figures.color('red','yellow')

figures.begin_fill()

for n in range(8):
    figures.polygon(8, 80)
    turtle.right(360/8)

figures.end_fill()
```

## Road map
At this stage, only [regular polygons](https://en.wikipedia.org/wiki/Regular_polygon) are supported. The aim however, is to support regular as well as irregular shapes.

- [x] Circle
- [ ] Scalene triangle
- [ ] Isosceles triangle
- [ ] Right triangle
- [ ] Obtuse triangle
- [x] Rectangle
- [ ] Parallelogram
- [ ] Trapezium


