// file SketchRect.java // Rectangle with colors, fill info, and line width. // by Harriet Fell // fell@ccs.neu.edu // December 2001 import java.awt.*; import java.awt.geom.*; import javax.swing.*; import java.awt.image.*; class SketchRect { Rectangle2D theRect; Color theColor; boolean filled; int lineWidth; }