Daily Creative Coding

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

2016-04-08から1日間の記事一覧

再帰的に円を描く

/** * circular fractal * * @author aa_debdeb * @date 2016/04/08 */ void setup(){ size(640, 640); mousePressed(); } void draw(){ } void mousePressed(){ background(255); stroke(255); fill(0); for(int d = 2; d < 9; d++){ float size = width / …