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
- Host: GitHub
- URL: https://github.com/kourva/rainwave
- Owner: Kourva
- Created: 2022-12-27T16:51:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-25T14:46:47.000Z (over 1 year ago)
- Last Synced: 2025-03-18T22:27:48.944Z (12 months ago)
- Topics: python, python3, rainbow, turtle, turtle-graphics, wave
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
```