猫史档案馆


【Python作品分享】解压乱画【作品秀】

用户:SYFCSYFC查看:0 回复:0 评论:0 创建时间:2021-04-02T21:33:05


【作品展示】

center_image

 

【作品介绍】

一言难尽~

做了半大天,虽然不是什么好玩的游戏,但希望大家喜欢!!!

 

【作品源代码】

# 导入库
import pgzrun
import random

# 空列表
balls = []

# 鼠标移动模块


def on_mouse_move(pos, rel, buttons):
    # 当鼠标左键按下时
    if mouse.LEFT in buttons:
        # 设置圆的位置、大小和颜色
        pos = (pos[0], pos[1])  # 设置位置
        radius = 6   
        R=random.randint(180,255)
        G=random.randint(180,255)
        B=random.randint(180,255)           # 设置半径大小
        color = (R, G, B)       # 设置颜色
        # 保存所有圆的信息
        ball = [pos, radius, color]
        balls.append(ball)

# 画图模块


def draw():
    # 设置背景为白色
    screen.fill("white")
    # 画出所有圆
    for ball in balls:
        pos = ball[0]      # 位置
        radius = ball[1]   # 半径大小
        color = ball[2]    # 颜色
        screen.draw.filled_circle(pos, radius, color)  # 画圆点


# 开始执行指令
pgzrun.go()

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页