本文介绍了像素网格中的圆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给定中心(x,y)
和半径 r
,如何绘制一个圆 C((x,y),r)
在像素网格中使用python?假设像素网格足够大是很好的。
Given the center (x,y)
and radius r
, how one can draw a circle C((x,y),r)
in pixel grid using python? It is fine to assume that pixel grid is large enough.
推荐答案
以下是RosettaCode
Here's the RosettaCode Midpoint circle algorithm in Python
def circle(self, x0, y0, radius, colour=black):
f = 1 - radius
ddf_x = 1
ddf_y = -2 * radius
x = 0
y = radius
self.set(x0, y0 + radius, colour)
self.set(x0, y0 - radius, colour)
self.set(x0 + radius, y0, colour)
self.set(x0 - radius, y0, colour)
while x < y:
if f >= 0:
y -= 1
ddf_y += 2
f += ddf_y
x += 1
ddf_x += 2
f += ddf_x
self.set(x0 + x, y0 + y, colour)
self.set(x0 - x, y0 + y, colour)
self.set(x0 + x, y0 - y, colour)
self.set(x0 - x, y0 - y, colour)
self.set(x0 + y, y0 + x, colour)
self.set(x0 - y, y0 + x, colour)
self.set(x0 + y, y0 - x, colour)
self.set(x0 - y, y0 - x, colour)
Bitmap.circle = circle
bitmap = Bitmap(25,25)
bitmap.circle(x0=12, y0=12, radius=12)
bitmap.chardisplay()
这篇关于像素网格中的圆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!