/RainWave

Simple Python library made with turtle that shows rainbow wave

Primary LanguagePython

RainWave

Simple Python library made with turtle that shows rainbow wave

Usage

from RainWave import Wave

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