xxxxxxxxxx
26
let myTex = "portal"
let x;
let y;
function setup() {
createCanvas(400, 400);
noStroke()
}
function draw() {
background(220);
text(myTex, 150, 40);
textSize(18);
// pink circle
fill(238, 191, 242);
strokeWeight(2);
ellipse(mouseX, mouseY, 150, 150, 40);
//black circle
fill(0);
ellipse(mouseX, mouseY,mouseX, mouseY);
x = random(0,255);
y = random(0,255);
}