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..
|
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.
|
This is incorrect
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
This tests if |
|||
|
You should use Midpoint circle algorithm. Nice thing about it that it uses only integer arithmetic - so it is both fast and exact. |
|||
|
|
|
Try to change
|
|||||||||
|
Here you are:
You should not compare floating-point numbers using
for example. |
|||
|
|
