2017-07-28から1日間の記事一覧

random_lines02

int step = 10; float x = 0; float y = 0; float lastx = -999; float lasty = -999; void setup() { size(500, 500); colorMode(HSB, 360, 100, 100); background(0, 0, 100); strokeWeight(5); smooth(); } void draw() { translate(0, -100); float ynoi…