2017-09-21から1日間の記事一覧

generative_noise03

float xstart, xnoise, ynoise; int num = 2; void setup() { size(500, 500); smooth(); background(0); frameRate(1); float xstart =random(10); float xnoise = xstart; float ynoise = random(10); } void draw() { for (int y = 0; y < height; y+=5 )…