draw_ellipse_colour(x1, y1, x2, y2, col1, col2, outline);
Argument | Description |
---|---|
x1 | The x coordinate of the left of the ellipse. |
y1 | The y coordinate of the top of the ellipse. |
x2 | The x coordinate of the right of the ellipse. |
y2 | The y coordinate of the bottom of the ellipse. |
col1 | The colour of the center. |
col2 | The colour of the edge. |
outline | Whether the ellipse is an outline (true) or filled in (false). |
Returns: N/A
With this function you can draw either an outline of an ellipse
or a filled ellipse by defining a rectangular area that will then
have the ellipse created to fit. If it is filled you can define the
interior and exterior fill colours. If these colours are not the
same, you will get a gradient effect from one to the other (the
colour settings will over-ride the base colour set with the
function draw_set_colour).
You can define how precise the drawing is with the function
draw_set_circle_precision.
draw_ellipse_colour(50, 50, 200, 100, c_black, c_white, false);
This would draw a filled-in, horizontally-stretched ellipse with a black center and white edge.