摘要: struct Point{ Point() { posx = 0; posy = 0; } Point(int x, int y) { posx = x; posy = y; } int posx; int posy;}; void bresenham(int x1, int y1, int x2, 阅读全文
posted @ 2017-02-27 19:15 c碰 阅读(623) 评论(0) 推荐(0) 编辑