(Formerly known as RawDrawCircle, which is now obsolete)
DrawingSurface.DrawCircle(int x, int y, int radius)
Draws a filled circle of radius RADIUS with its centre at (X,Y) in the current drawing colour.
Example:
DrawingSurface *surface = Room.GetDrawingSurfaceForBackground();
surface.DrawingColor = 14;
surface.DrawCircle(160,100,50);
surface.Release();
will draw a circle in the centre of the screen, of 50 pixels radius.
See Also: DrawingSurface.DrawLine,
DrawingSurface.DrawingColor
|