xxxxxxxxxx
63
let x1, y1, x4, y4;
randday = 0;
let days = ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"];
let x2 = 200;
let y2 = 100;
let x3 = 400;
let y3 = 500;
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255);
x1 = 100;
y1 = 100;
if (mouseIsPressed) {
console.log(true);
let rando = noise(random(0,600));
let gap0 = map(rando, 0, 1, 0, 200);
x2 = 100 + gap0;
y2 = gap0;
let gap = map(rando, 0, 1, 100, 200);
x3 = x2 + gap;
y3 = y2 + gap;
fill(0);
}
//stroke(0);
//line(x1, y1, x2, y2);
//line(x3, y3, x4, y4);
x4 = 100;
y4 = height-100;
noStroke();
fill("sienna");
beginShape();
bezier(x1, y1, x2, y2, x3, y3, x4, y4);
vertex(100,height);
vertex(0,height);
vertex(0,0);
vertex(100,0);
endShape();
textSize(50);
fill(0);
text(days[randday%7], width*0.5, 100);
}
function mousePressed() {
randday += 1;
}