Daily Creative Coding

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

2016-04-23から1日間の記事一覧

パリーンノイズによる3D上での表面

3D

/** * 3d noise surface * * @author aa_debdeb * @date 2016/04/23 */ float stepSize = 10; float maxDepth = 200; void setup(){ size(640, 640, P3D); noFill(); stroke(0, 0, 255); strokeWeight(2); } void draw(){ background(32); for(float w = 0; …