Daily Creative Coding

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

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

Wriggle

/** * Wriggle * * @author aa_debdeb * @date 2015/09/06 */ float TIME_STEP = 0.03; float H_STEP = 0.01; float time = 0.0; void setup(){ size(500, 500); smooth(); frameRate(60); } void draw(){ background(255); stroke(0); strokeWeight(1); for…