Daily Creative Coding

元「30 min. Processing」。毎日、Creative Codingします。

2016-03-07から1日間の記事一覧

斜めのタイル

/** * skew tile * * @author aa_debdeb * @date 2016/03/07 */ void setup(){ size(500, 500); noLoop(); background(255); stroke(0); strokeWeight(10); int step = 25; for(int w = 0; w < width; w += step){ for(int h = 0; h < height; h += step){ i…