Daily Creative Coding

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

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

ランダムの風景

/** * landspace of randomness * * @author aa_debdeb * @date 2016/08/01 */ void setup(){ size(500, 500); noFill(); mousePressed(); } void draw(){} void mousePressed(){ float[][] values = new float[width][height]; for(int x = 0; x < width; x…