Daily Creative Coding

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

2016-10-09から1日間の記事一覧

シフトによるタイリング

/** * shift tiling * * @author aa_debdeb * @date 2016/10/09 */ int cellNum = 10; int tempSize = 25; int rectSize = 2; void setup(){ size(500, 500); mousePressed(); } void mousePressed(){ int[][][] templates = new int[tempSize][tempSize][2]…