FilledEllipse:
FilledEllipse(XPixelPosition, YPixelPosition, XRadius, YRadius [,Optional LineColour] )
Explanation:
Draws a FilledEllipse on a GLCD at XPixelPosition, YPixelPosition with a specific vertex of XRadius and YRadius.
The constant GLCD_PROTECTOVERRUN can be added to prevent FilledEllipses from
re-drawing at the screen edges. Ensure the GLCD_Width and GLCD_HEIGHT
constants are set correctly when using this additional constant.
Example:
#include <glcd.h>
FilledEllipse(63, 31, 20, 10)
