在 Python 中,您可以使用 pygame.draw.rect 函数在 Pygame 显示屏上绘制矩形。
pygame.draw.rect的语法如下:
pygame.draw.rect(surface, color, rect, width=0)
其中:
以下是如何在 Pygame 窗口中绘制蓝色矩形的示例:
<code class="python">import pygame # Initialize Pygame pygame.init() # Set up the display DISPLAY = pygame.display.set_mode((500, 400), 0, 32) # Create the colors WHITE = (255, 255, 255) BLUE = (0, 0, 255) # Fill the display with white DISPLAY.fill(WHITE) # Draw the rectangle pygame.draw.rect(DISPLAY, BLUE, (200, 150, 100, 50)) # Update the display pygame.display.update() # Keep the window open until the user quits while True: for event in pygame.event.get(): if event.type == QUIT: pygame.quit() sys.exit()</code>
此代码创建 500x400 像素的白色显示。然后它绘制一个坐标 (200, 150) 和尺寸 (100, 50) 的蓝色矩形。
以上是如何使用 Pygame 在 Python 中绘制矩形?的详细内容。更多信息请关注PHP中文网其他相关文章!