Daily Creative Coding

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

2016-12-23から1日間の記事一覧

円のループ

/** * loop of circles * * @author aa_debdeb * @date 2016/12/23 */ int NUM = 24; void setup(){ size(640, 640); noStroke(); } void draw(){ background(0, 0, 30); translate(width / 2, height / 2); for(int i = 0; i < NUM; i++){ float angle = i …