Daily Creative Coding

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

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

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

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