bigswimv2.py

Created by schraf

Created on August 28, 2022

251 Bytes


from math import *
from kandinsky import *

for c in range(320):
 for l in range(222):
  x=(c-160)/10
  y=(l-111)/10
  g=sin(sin(x*(sin(y)-cos(x))))
  d=.5*cos(cos(y*(cos(x)-sin(y))))
  a=55+80*abs(g-d)
  set_pixel(c,221-l,(a,.9*a,0))