/** * The enum {@link Shape} defines the 3 shapes that this {@link ShapePanel} * can draw. * * @author BKey * */ public enum Shape { SQUARE, CIRCLE, TRIANGLE; }