// (c) 1998 duane a. bailey import element.*; public class InvertBullseye { public static void main(String args[]) { DrawingWindow d = new DrawingWindow(); Oval o = new Oval(50,50,100,100); d.invertMode(); // flip black and white d.fill(o); // paints black o.extend(-10,-10); d.fill(o); // clears to white o.extend(-10,-10); d.fill(o); // paints black o.extend(-10,-10); d.fill(o); // clears to white o.extend(-10,-10); d.fill(o); // paints black } }