arachnid.py

Created by schraf

Created on August 28, 2022

207 Bytes

Source : http://www.peda.com/grafeq/gallery.html

Chrome : https://my.numworks.com/python/schraf/chrome

Sphère : https://my.numworks.com/python/schraf/sphere

Margarita : https://my.numworks.com/python/schraf/margarita

Threesome : https://my.numworks.com/python/schraf/threesome

The Big Swim : https://my.numworks.com/python/schraf/bigswim


from math import *
from kandinsky import *

for c in range(320):
 for l in range(222):
  x=c/20-8
  y=l/6-5
  g=40+71*abs(sin(x)+cos(y)+sin(x*cos(y)+y*sin(x)))
  set_pixel(c,221-l,(g,.8*g,0))