import uwcse.graphics.*; // access the graphics utilities in the uw library import java.awt.Color; // access the Color class /** *

* Create a spider in a graphics window *

* * @author your name here */ public class Spider { // Your instance fields go here /** * Creates a spider centered at location (x,y) in the GWindow window. The * size of the spider is the default size times scale. */ public Spider(int x, int y, double scale, GWindow window) { } /** * Draws in the graphics window a spider at location (x,y) with size = * default size * scale */ private void draw() { } }