Daily Creative Coding

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

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

触れると動くスライム

/** * touchable slime * * @author aa_debdeb * @date 2016/11/29 */ float noiseValue; float time; void setup(){ size(640, 640); noiseValue = 0.5; time = 0.0; background(150); } void draw(){ fill(150, 100); rect(0, 0, width, height); translat…