ホームページ >バックエンド開発 >Python チュートリアル >Pygameを使用してPythonで長方形を描く方法?
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 中国語 Web サイトの他の関連記事を参照してください。