//A2-10-Create an event that begins when the mouse is pressed and ends when the mouse is released. Circulo myCirculo = new Circulo(); void setup(){ size (350,350); smooth (); } void draw(){ background (0); fill(255,0,0); stroke (255,0,0); strokeWeight (6); myCirculo.drawMe(); } class Circulo { void drawMe(){ ellipse (mouseX,mouseY,35,35); if (mousePressed ==true) { pushMatrix(); translate (mouseX, mouseY); line (0,-45,0,45); rotate (radians (120)); line (0,-45,0,45); rotate (radians (120)); line (0,-45,0,45); popMatrix(); } } }