2017-08-01から1日間の記事一覧

fried_egg01

void setup() { size(500, 500); colorMode(HSB, 360, 100, 100, 100); background(360); smooth(); frameRate(10); } void draw() { noStroke(); fill(360, 20); rect(0, 0, width, height); float y = height/2 + sin(frameCount)*10; float x = width/2 -…