//Valerie test script //script showing joining circles of various sizes void setup() { size(640,360); smooth(); } void draw() { background(52); fill(255,155,0,255); //big outer circle ellipse(mouseX+40,mouseY+40,60,60); fill(255,0,0,255); //red inner circle ellipse(mouseX+40,mouseY+40,16,16); fill(255,155,0,255); //outer circle color - orange ellipse(mouseX-23,mouseY-23,120,120); fill(255,0,0,255); //inner red circle ellipse(mouseX-23,mouseY-23,16,16); //closeness of circle fill(255,155,0,255); //coor of big circle ellipse(mouseX-120,mouseY-120,160,160); fill(255,0,0,255); ellipse(mouseX-120,mouseY-120,16,16); }