|
|
@ -6,13 +6,13 @@ from utils import random_color
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# dimensions of the output image
|
|
|
|
# dimensions of the output image
|
|
|
|
WIDTH, HEIGHT = 1024, 1024
|
|
|
|
WIDTH, HEIGHT = 1920, 1080
|
|
|
|
# numbers of waves
|
|
|
|
# numbers of waves
|
|
|
|
WAVES = 10
|
|
|
|
WAVES = 12
|
|
|
|
# how much should the phases be offset?
|
|
|
|
# how much should the phases be offset?
|
|
|
|
WAVE_OFFSET = -0.7
|
|
|
|
WAVE_OFFSET = 0 - (math.pi/4)#-1.9
|
|
|
|
# amplitude of the sine wave
|
|
|
|
# amplitude of the sine wave
|
|
|
|
AMPLITUDE = 25
|
|
|
|
AMPLITUDE = 50
|
|
|
|
# only 1 color with shades?
|
|
|
|
# only 1 color with shades?
|
|
|
|
MONOCHROME = True
|
|
|
|
MONOCHROME = True
|
|
|
|
# background black? White otherwise:
|
|
|
|
# background black? White otherwise:
|
|
|
|