Metadata-Version: 2.4
Name: numpy_turtle
Version: 0.3
Summary: Turtle graphics with NumPy
Author-email: Joren Hammudoglu <jhammudoglu@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: numpy>=1.25
Requires-Dist: scikit-image>=0.20
Description-Content-Type: text/markdown

# NumPy Turtle

Draw directly onto a NumPy array using very easy turtle graphics.
Inspired by the [turtle](https://docs.python.org/3.6/library/turtle.html) library.

## Examples

<table>
<tr>
<td>

Koch curve ([code](numpy_turtle/examples/koch_curve_c.py)):

![Koch curve](examples/images/koch_curve_c.png)

</td>
<td>

Sierpinski triangle ([code](numpy_turtle/examples/sierpinski_triangle.py)):

![Sierpinski triangle](examples/images/sierpinski_triangle.png)

</td>
</tr>
<tr>
<td>

Fractal plant ([code](numpy_turtle/examples/fractal_plant.py)):

![Fractal plant](examples/images/fractal_plant.png)

</td>
<td>

Fractal conifer ([code](numpy_turtle/examples/conifer.py)):

![Fractal conifer](examples/images/conifer.png)

</td>
</tr>
</table>



## Installation

```bash
pip install numpy-turtle
```
