Update added detail
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user