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

rotate_rects02

int step = 50; void setup() { size(500, 500); colorMode(HSB, 360, 100, 100, 100); frameRate(12); noStroke(); smooth(); } void draw() { for ( int y = 0; y < height; y += step) { for ( int x = 0; x < width; x += step) { pushMatrix(); transla…