/* 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 = 35; //The radial height int rw = 5; //The radial width int hit; int cx; int cy; public Rectangle(int selected, int radius_height, int radius_width, int center_x, int center_y) { hit = selected; rh = radius_height; rw = radius_width; cx = center_x; cy = center_y; } }