I im new to processing and its great !
I did my first Sketch , its just three shapes a background , and a line that comes from the center following the mouse.

But i have some problems.
Why does the stroke of the rect and ellipse wich is 20 , like the line because there is an "strokeWeight (20);" gets overlaped by its own fill color,white ?
I want the ellipses to be on top of everything so i can see the whole circle, now i only see half.
Here's the code
// setup , configuracion
void setup (){
background (234,10,98);
size(300,300);
smooth();
frameRate (30 );
cursor(CROSS);
}
void draw(){
if(mouseX > width/2){
strokeWeight(20);
stroke(#27FF00 ,20);//linea verde
}
else
{
strokeWeight(20);
stroke(#E4FF00,20);// linea amarillo
}
if(mouseX !=0 && mouseY != 0){
line ( width/2,height/2,mouseX,mouseY);
}
fill(255);
rect(width/4,height/4,width/2,height/2);
ellipse(width/2,230,100,100);
ellipse(width/2,height/5,50,50);
}