Metadata-Version: 2.1
Name: eggcellent
Version: 0.1.1
Summary: Egg shapes.
Home-page: https://github.com/davipatti/eggcellent
Author: David Pattinson
Author-email: davipatti10@gmail.com
Maintainer: David Pattinson
Maintainer-email: davipatti10@gmail.com
License: MIT
Download-URL: https://github.com/davipatti/eggcellent/releases/latest
Keywords: egg
Platform: Linux
Platform: MacOS
Platform: Windows
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown

# eggcellent

Make excellent egg shapes.

# Install

It can be installed from command - line using
[pip](https://pypi.org/project/pip/):

```bash
pip install eggcellent
```

# Usage

## Use a default egg:

```python
from eggcellent import egg
import matplotlib.pyplot as plt
plt.scatter([0, 1], [0, 1], marker=None, verts=egg, s=200)
```

![example1.png](eggs.png)

## Make your own egg

```python
from eggcellent import make_egg
egg = make_egg(a=2, b=3)
```

The egg equation is:

r = cos(2θ) + a \* cos(θ) + b


