如何使网格线更粗



这是我的代码到目前为止,我的问题是我如何使白色网格线更粗,保持它们之间25像素的距离?请帮助

def grid():
  picture = makeEmptyPicture(365,365,black)
  w = getWidth(picture)
  h = getHeight(picture)
  vertical = 25
  horizontal = 25
  for y in range(0,h):
    for x in range(0,w):
      if (x % horizontal ==0 or y % vertical == 0):
      px = getPixel(picture,x,y)
      setColor(px, white)
  show(picture)
  return picture

为了使你的线条更大,试着在同一条线上画两条线。例如

px1 = getPixel(picture, x, y+1)
px2 = getPixel(picture, x, y+1)
setColor(px1, white)
setColor(px2, white)

这将使直线沿x轴变大。

为了保持行间距25像素,尝试在每次迭代后将外部循环增加26。

相关内容

  • 没有找到相关文章

最新更新