import world.*; import image.*; import tester.*; // Examples of Images and Scenes class SceneExamples{ SceneExamples(){} // The empty scene Scene mt = new EmptyScene(200, 200); // Overlayed Circle and Star Image shapes = new OverlayXY(new Circle(35, "outline", "green"), -50, 10, new Star(40, "outline", "red")); // Place the shapes and a title into the empty scene Scene scn = mt.placeImage(shapes, 100, 120) .placeImage(new Text("Sample", 30, "purple"), 100, 40); // Test the Scene by displaying it boolean testDisplay(Tester t){ return World.display(scn); } }