xxxxxxxxxx
25
function preload(){
negative = loadImage('Theone.jpg')
}
function setup() {
createCanvas(600, 400);
}
function draw() {
background(negative)
fill(255, 0, 0)
ellipse(370, 210, 10)
fill(0,255, 255)
ellipse(365, 220, 10)
fill(255)
ellipse(375, 220, 10)
if (mouseIsPressed){
background(255)
fill(0)
textSize(20);
text('X', 365, 220);
}
}