Source : http://www.peda.com/grafeq/gallery.html
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
Arachnid : https://my.numworks.com/python/schraf/arachnid
from math import * from kandinsky import * for i in range(1600): for j in range(1110): x=(i-800)/200 y=(j-555)/200 try: g=cos(x*sin(y))%sin(x*cos(y)) except: g=1 d=.5*(sin(250*x)+sin(250*y)) c=60+170*abs(g) if g<d: set_pixel(i//5, j//5, (c,c,c))