Daily Creative Coding

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

2015-10-10から1日間の記事一覧

ばね

/** * Springs * * @author aa_debdeb * @date 2015/10/11 */ int SPRING_NUM = 30; float SPRING_COEFFICNET = 0.01; PVector center; ArrayList<Spring> springs; void setup(){ size(500, 500); smooth(); frameRate(24); center = new PVector(width/2, height/2</spring>…