drawRect
// Draw the outline of a rectangle with width w and height h, with // the left-top corner at point (x,y), using the current color. public class drawRect(int x, int y, int w, int h)
// Fill the rectangle that would be drawn by drawRect(x,y,w,h); // with the current color
public class fillRect(int x, int y, int w, int h)