Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Problem is, I am not getting a proper circle. For example, if I enter cordinates:9,8 and radius:8 ... I only get very few points.. Can somebody please guide me in how to obtain a complete circle, what is wrong in this code? We cannot use any built in function..

share|improve this question
1  
Even if this worked it would be possibly the most inefficient way to draw a circle, I suggest you read about polar-coordinates on wiki then try again. – Dan Nov 20 '12 at 17:09
1  
Also, consider formatting your code and having a reasonable user name. – H2CO3 Nov 20 '12 at 17:14
1  
C is not C++. If you're not writing C++, don't add it to your tag list. – Rook Nov 20 '12 at 17:14

closed as too localized by djechlin, chill, Wooble, H2CO3, netcoder Nov 20 '12 at 17:21

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

This is incorrect

if(sqrt(pow(i,2)+ pow(j,2))== radius)

It's very rare that these two values will be exactly equal. Instead you should make a test to see if the two numbers are roughly equal. Like this for instance

if (fabs(sqrt(pow(i,2)+ pow(j,2)) - radius) <= 0.001)

This tests if sqrt(pow(i,2)+ pow(j,2)) and radius are within 0.001 of each other. You might need to change the value of 0.001 to something else. It depends on your co-ordinate system.

share|improve this answer
the absolute value is not needed, x ^ 2 + y ^ 2 will never be greater than r ^ 2, it's sufficient to check for the sum to be greater than r - epsilon. – H2CO3 Nov 20 '12 at 17:13
@H2CO3 In the OP's loop x^2 + y^2 is most definitely greater than r^2 on occasion. – john Nov 20 '12 at 17:15

You should use Midpoint circle algorithm.

Nice thing about it that it uses only integer arithmetic - so it is both fast and exact.

share|improve this answer

Try to change a to i in the first for loop. Don't compare floats via ==. Try to have some EPSILON number and do as follows:

for(i = -y_cor; i <= y_cor; i++)
 {
    for(j = -x_cor; j <=x_cor ; j++)
    {
      if(fabs(sqrt(pow(i,2)+ pow(j,2)) - radius) < EPSILON)
         printf(".");
      else
        printf(" ");
    }
    printf("\n");
 }
share|improve this answer
still it doesn't work properly – kdfjldskfjlks kdsjldksjflkds Nov 20 '12 at 17:11
Nope. You're still comparing floating point numbers using == which is wrong. – H2CO3 Nov 20 '12 at 17:12
You are right, I missed that. Edited. – Maroun Maroun Nov 20 '12 at 17:13
alright thanks for pointing out :) – kdfjldskfjlks kdsjldksjflkds Nov 20 '12 at 17:15

what is wrong in this code?

Here you are:

if (sqrt(pow(i, 2) + pow(j, 2)) == radius)

You should not compare floating-point numbers using ==, it won't work as expected. You should check instead if it's close to the radius:

if (sqrt(pow(i, 2) + pow(j, 2)) >= radius * 0.95)

for example.

share|improve this answer
oh right right.. thanks for pointing out :) – kdfjldskfjlks kdsjldksjflkds Nov 20 '12 at 17:15

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