import uwcse.graphics.*; // access the graphics utilities in the uw library import java.awt.Color; // access the Color class /** *
* A FaceScene displays smiling faces in a graphics window *
* * @author Your name here */ public class FaceScene { /** * Creates a picture */ public FaceScene() { // The graphics window // The window is by default 500 wide and 400 high // Exit when closing the window // Background (e.g. cyan) // Create the scene elements // e.g. a face in the lower area 1.5 times the normal size } /** * Starts the application */ public static void main(String[] args) { new FaceScene(); } }