Daily Creative Coding

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

2016-02-01から1日間の記事一覧

積み重ねセルオートマトン

/** * Incrustation * * @author aa_debdeb * @date 2016/02/01 */ int[][] cells; int cellNum = 50; int cellSize = 10; void setup(){ size(500, 500); frameRate(1000); noStroke(); colorMode(HSB, 360, 100, 100); cells = new int[cellNum][cellNum];…