有一个 int I 和 number if iterations 和一个函数 DrawPoint(x,y) 如何画一个圆?
所以我们有一个绘制点的函数 DrawPoint(x,y),我们必须绘制一些看起来像圆的点。如何创建这样的 for(i=0; i
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
所以我们有一个绘制点的函数 DrawPoint(x,y),我们必须绘制一些看起来像圆的点。如何创建这样的 for(i=0; i
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
获得合适圆的更好算法之一是 Bresenham 圆算法,也称为中点圆算法。
直接的基本圆形例程的问题在于,它们往往会产生混叠效应,因此结果看起来不正确,该算法提供了更好的近似值,但并不严格适合您的
for(;;)
循环要求,尽管它仍然是一个迭代循环。One of the better algorithms for getting a decent circle is the Bresenham's circle algorithm, also called the Midpoint circle algorith.
The problem with the straight forward, basic circle routines is that they tend to have alias effects and not look right as a result, this algorithm gives a better approximation, though does not strictly fit your
for(;;)
loop requirement, though it is still an iterative loop.