An open API service indexing awesome lists of open source software.

https://github.com/kourva/rainwave

Simple Python library made with turtle that shows rainbow wave
https://github.com/kourva/rainwave

python python3 rainbow turtle turtle-graphics wave

Last synced: 11 months ago
JSON representation

Simple Python library made with turtle that shows rainbow wave

Awesome Lists containing this project

README

          

# RainWave
Simple Python library made with turtle that shows rainbow wave

# Usage
```python
from RainWave import Wave

a = Wave()
a.bgcolor = "cyan"
a.fgcolor = "black"
a.speed = 15
a.step = 12
a.repeat = 10
a.run()

```