Daily Creative Coding

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

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

三次元のホワイトノイズ

3D

/** * 3D White Noise * * @author aa_debdeb * @date 2015/11/27 */ void setup(){ size(500, 500, P3D); smooth(); frameRate(30); } void draw(){ background(255); stroke(0); strokeWeight(1); fill(128, 128); lights(); rotateX(-PI / 4); rotateY(-P…