Daily Creative Coding

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

2016-08-02から1日間の記事一覧

パーリンノイズの風景

/** * landscape of perlin noise * * @author aa_debdeb * @date 2016/08/02 */ void setup(){ size(500, 500); noFill(); mousePressed(); } void draw(){} void mousePressed(){ float noiseX = random(10000); float noiseY = random(10000); float[][] …