|
size(300,300);
background(0,150,150);
ellipseMode(CENTER_DIAMETER);
stroke(255,0,0);
ellipse(150,150,200,200);
ellipseMode(CENTER_DIAMETER);
fill(255,0,0);
ellipse(100,100,10,10);
ellipse(200,100,10,10);
//1
rectMode(CENTER_DIAMETER);
fill(255,0,0);
stroke(255,0,0);
rect(150,150,60,10);
|