Daily Creative Coding

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

2017-03-07から1日間の記事一覧

歪んだパーリンノイズ#3

/** * distorted perline noise #3 * * @author aadebdeb * @date 2017/03/07 */ function setup() { createCanvas(windowWidth, windowHeight); mousePressed(); } function mousePressed() { background(0); noStroke(); var ndw = random(10000); var ndh…