xxxxxxxxxx
25
function setup() {
createCanvas(600, 400);
}
function draw() {
background('white');
strokeWeight(0)
textSize(10)
text('Mouse X = ' + mouseX + " | Mouse Y = " + mouseY, 10, 10)
textSize(200);
text('🍔',120,280);
textSize(250);
strokeWeight(20);
stroke('black')
strokeCap(ROUND)
line(444,230,444,320)
noStroke();
text('😋',320,220);
stroke(220,118,51)
strokeWeight(1);
fill(220,118,51)
rect(0,320,600,40)
rect(0,363,600,40)
}