Make Ellipse Dissapear
in
Programming Questions
•
1 year ago
Hi guys, i just wondering if there's any way to make the ellipse actually move and disspear from his previous location?
thankssssss
void draw() {
stroke(Green_C);
strokeWeight(3);
ellipse( q, w, 55 ,55);
}
void Update_Position() {
ellipse(q, 100,55 ,55);
}
void mousePressed() {
if ((mouseX>60) && (mouseY>300) && (mouseX<120) && (mouseY<360))
{
w = w-60;
}
if ((mouseX>120) && (mouseY>300) && (mouseX<180) && (mouseY<360))
{
q = q+60;
}
if ((mouseX>180) && (mouseY>300) && (mouseX<240) && (mouseY<360))
{
w = w+60;
}
if ((mouseX>240) && (mouseY>300) && (mouseX<300) && (mouseY<360))
{
q = q-60;
}
}
1