up vote 6 down vote favorite
1
share [g+] share [fb]

I am using Bresenham's circle algorithm for fast circle drawing. However, I also want to (at the request of the user) draw a filled circle.

Is there a fast and efficient way of doing this? Something along the same lines of Bresenham?

The language I am using is C.

link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

Having read the Wikipedia page on Bresenham's (also 'Midpoint') circle algorithm, it would appear that the easiest thing to do would be to modify its actions, such that instead of

setPixel(x0 + x, y0 + y);
setPixel(x0 - x, y0 + y);

and similar, each time you instead do

lineFrom(x0 - x, y0 + y, x0 + x, y0 + y);

That is, for each pair of points (with the same y) that Bresenham would you have you plot, you instead connect with a line.

link|improve this answer
Very clear. – dmckee Jul 29 '09 at 16:01
feedback

Here's a C# rough guide (shouldn't be that hard to get the right idea for C) - this is the "raw" form without using Bresenham to eliminate repeated square-roots.

Bitmap bmp = new Bitmap(200, 200);

int r = 50; // radius
int ox = 100, oy = 100; // origin

for (int x = -r; x < r ; x++)
{
    int height = (int)Math.Sqrt(r * r - x * x);

    for (int y = -height; y < height; y++)
        bmp.SetPixel(x + ox, y + oy, Color.Red);
}

bmp.Save(@"c:\users\dearwicker\Desktop\circle.bmp");
link|improve this answer
1  
Or loop on y and draw horizonal lines. Occasionally there is a reason to choose one or the other, but in most cases it does not matter. Either way you use the same Bresenham logic to find the endpoints quickly. – dmckee Jul 29 '09 at 15:58
1  
All those Math.Sqrt's aren't going to be especially fast... – AakashM Jul 29 '09 at 16:01
1  
No, but you can use Bresenham to avoid that. The basic idea is to "join the dots" between the upper and lower points at each x coordinate covered by the circle. – Daniel Earwicker Jul 29 '09 at 16:02
1  
Profile to see which is best. If there's a difference at all, going horizontal should be better. It gets rid of a multiplication by stride and may result in fewer faults. – colithium Jul 29 '09 at 16:05
4  
That perennial problem - what to do with one's carefully-tuned educated-guesswork engine when the fundamentals change? – AakashM Jul 29 '09 at 16:45
show 4 more comments
feedback

Just use brute force. This method iterates over a few too many pixels, but it only uses integer multiplications and additions. You completely avoid the complexity of Bresenham and the possible bottleneck of sqrt.

for(int y=-radius; y<=radius; y++)
    for(int x=-radius; x<=radius; x++)
        if(x*x+y*y <= radius*radius)
            setpixel(origin.x+x, origin.y+y);
link|improve this answer
feedback

I would just generate a list of points and then use a polygon draw function for the rendering.

link|improve this answer
If he has implemented Bresenham for the open version, he is working at a lower layer then using an API...either for learning purposes or to implement an API. – dmckee Jul 29 '09 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.