[algogeeks] Re: a better way to draw circle using curses

2006-03-15 Thread DaVinci
shalinmangar wrote: > Haven't had a look at your code, but IMHO you can get a lot of help if > you look up some circle drawing algos from any Graphics textbook. Yes,Thanks.I had found where the problem is. --~--~-~--~~~---~--~~ You received this message because

[algogeeks] a better way to draw circle using curses

2006-03-13 Thread DaVinci
hi,all... here are my codes on how to a draw a circle using curses,but I found it's not a good way and there are some bugs. #include #include using std::vector; struct Point { Point(int i_,int j_) { i = i_; j = j_; } int i; in