Daily Creative Coding

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

2016-06-11から1日間の記事一覧

円の中のパーティクル間を線で結ぶ

/** * line drawers in circle * * @author aa_debdeb * @date 2016/06/11 */ float maxRadious = 200; float minVel = 0.5; float maxVel = 1.0; ArrayList<Particle> particles;; void setup(){ size(500, 500); frameRate(180); background(220); colorMode(HSB, 36</particle>…