/* Research Project: Graphical Database for Category Theory J. Bradbury, Dr. R. Rosebrugh, I. Rutherford Mount Allison University 2001 File: DRect.java (author: Larry Barowski, Auburn University, 5/26/96) Description: A class for holding a real rectangle. */ public class DRect { public double x, y, width, height; public DRect(double x_in, double y_in, double width_in, double height_in) { x = x_in; y = y_in; width = width_in; height = height_in; } }