Basic Circle


    size(100, 100);
    smooth();
  
    background(255);
  
    float cx = width/2;
    float cy = height/2;
    float diameter = width*.9;
    
    fill(0);
    ellipse(cx,cy,diameter,diameter);