// Use the UW graphics library import uwcse.graphics.*; import java.awt.*; /** * Display a graphics window with a circle */ public class SomeGraphics { // A graphics window and 2 circles private GWindow window = new GWindow(); private Oval circle1 = new Oval(); private Oval circle2 = new Oval(); /** * Constructor for objects of class WindowWithCircle */ public SomeGraphics() { circle2.moveBy(80, 0); circle2.setColor(Color.blue); window.add(circle1); window.add(circle2); } /** * Entry point of the program */ public static void main(String[] args) { new SomeGraphics(); } }