Stroke Circle


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