        //FUNCTION: getPoint
        //PARAMETERS: Index
        //PURPOSE: The function 'getPoint' returns the Point at the Index parameter passsed to the function
        public Point getPoint(int index)
        {
            return points[index];
        }
**************************************************************
        //FUNCTION: setARGB
        //PARAMETERS: Color
        //PURPOSE: The function 'setARGB' sets the triangle's color value with the randomly generated color value
        public void setARGB(Color generatedColor)
        {
            Console.WriteLine("in setColor");
            color = generatedColor;
            Console.WriteLine("color:" + color);
        }