用python写Rect()函数
时间: 2024-06-03 22:09:26 浏览: 93
浅谈python3 构造函数和析构函数
Rect()函数是pygame模块中的一个函数,用于绘制一个矩形。可以通过传递参数来指定矩形的位置、大小、颜色、线条宽度等。下面是一个简单的用法示例:
import pygame
pygame.init()
# 创建窗口
screen = pygame.display.set_mode((640, 480))
# 绘制矩形
pygame.draw.rect(screen, (0, 255, 0), (100, 100, 200, 150), 2)
# 刷新屏幕
pygame.display.flip()
# 游戏循环
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 退出游戏
pygame.quit()
阅读全文