Daily Creative Coding

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

2016-07-05から1日間の記事一覧

ぐにゃぐにゃする球

3D

/** * wriggling sphere * * @author aa_debdeb * @date 2016/07/05 */ float radious = 200; int resolution = 40; PVector noiseOffset; void setup(){ size(500, 500, P3D); fill(160); stroke(200); strokeWeight(1); mousePressed(); } void mousePress…