Daily Creative Coding

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

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

格子迷路

/** * maze tiles * * @author aa_debdeb * @date 2016/03/19 */ int CELL_NUM = 50; int CELL_SIZE = 10; void setup(){ size(500, 500); mousePressed(); } void draw(){ } void mousePressed(){ background(random(255), random(255), random(255)); stro…