Daily Creative Coding

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

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

円のタイル

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