Stroke and fill an ellipse, uses the stroke color set in stroke() and the fill color set in fill().
YourScreen.ellipse(x, y, width, height)
Nothing
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.noStroke();
YourScreen.fill(255, 255, 0);
YourScreen.ellipse(YourScreen.width()/2, YourScreen.height()/2, YourScreen.width(), YourScreen.height());
YourScreen.endDraw();