# pixels4.py
from Processing import *

window(255, 255)

loadPixels()

for c in range(255):
    for r in range(255):
        clr = color(0, c, 255-c)
        setPixel(c, r, clr)

updatePixels()