Update added detail

This commit is contained in:
Lev
2021-06-27 00:37:17 -05:00
parent 6901aeac25
commit 8b86381f7a

View File

@ -7,13 +7,14 @@ function setup() {
function draw() {
background(0);
noiseDetail(10);
noisyGrid();
}
function noisyGrid(){
for (var x=0; x<width; x+=1){
for (var y=0; y<height; y+=1){
var n = noise(x/100, y/100, frameCount/100);
var n = noise(x/100, y/100, frameCount/50);
var c = map(n, 0, 1, 0, 255);
stroke(c)
point(x, y);