Daily Creative Coding

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

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

弧と円のタイル

/** * circular tile * * @author aa_debdeb * @date 2016/03/21 */ int CELL_NUM = 25; int CELL_SIZE = 20; void setup(){ size(500, 500); mousePressed(); } void draw(){ } void mousePressed(){ background(random(255), random(255), random(255)); s…