Daily Creative Coding

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

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

揺れる球の輪

3D

/** * noisy sphere ring * * @author aa_debdeb * @date 2016/06/18 */ float radious = 200; float noiseScale = 0.01; float timeScale = 0.03; void setup(){ size(500, 500, P3D); } void draw(){ background(255); stroke(60); noFill(); translate(wi…