Daily Creative Coding

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

2017-01-30から1日間の記事一覧

パーリンノイズの層

/* * layers of perlin noise * * @author aadebdeb * @date 2017/01/30 */ var colors; function setup() { createCanvas(windowWidth, windowHeight); mousePressed(); } function mousePressed() { var cscale = [random(0.1), random(0.1), random(0.1)]…