/* Sets up a rectangle class which defines the syntax that will be used to draw rectangles and defines the variables involved in the process */ public class Rectangle { int rh; //The radial height int rw; //The radial width int hit; int cx; int cy; public Rectangle(int radius_height, int radius_width, int center_x, int center_y) { rh = radius_height; rw = radius_width; cx = center_x; cy = center_y; } }