提交 14a0d4b5 编写于 作者: 三月三net's avatar 三月三net

Python超人-宇宙模拟器

上级 f87c7a54
......@@ -44,7 +44,7 @@ def gen_bodies_from_image(pixel_image, params, body_template=None):
# 对于纯白色的颜色,就忽略,不生成星球(这样图片中,纯白色越多,对电脑的压力就越小)
if pixel[0] >= 255 and pixel[1] >= 255 and pixel[1] >= 255:
continue
body_str = body_template % (f"星球{h}:{w}", pixel[0], pixel[1], pixel[2], scale,
body_str = body_template % (f"星球{w}:{h}", pixel[0], pixel[1], pixel[2], scale,
(width - w) * interval_factor, (height - h) * interval_factor, scale)
bodies_str += body_str + ",\n"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册