xxxxxxxxxx
26
var noiseVal;
// noprotect
function setup() {
createCanvas(600, 600);
background("cornflowerblue");
stroke("tan");
for(var i=0; i<width; i++){
for(var j=0; j<height; j++){
if(noise(i*0.02, j*0.02)<0.35){
point(i,j);
}
}
}
noStroke();
fill("cornflowerblue");
rect(0,0,width, 100);
fill("yellow");
textFont("cursive");
textAlign(CENTER);
textSize(30);
text("You've Found the Map to my Heart :~)", width/2, 60);
}
function draw() {
}