from math import * from kandinsky import * for x in range(0,320): for y in range(0,222): r=(x+y)**2/(y+1) g=0 b=80 #r=0.8*abs((x-y)**2/(x+y+1)) set_pixel(x,y,color(r,g,b)) #changer les calculs r g et b
Create, edit, and import your Python scripts
from math import * from kandinsky import * for x in range(0,320): for y in range(0,222): r=(x+y)**2/(y+1) g=0 b=80 #r=0.8*abs((x-y)**2/(x+y+1)) set_pixel(x,y,color(r,g,b)) #changer les calculs r g et b