Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 3.2で長方形を描く方法を知る必要があるゲームを作っています。
多くの情報源を確認しましたが、その方法を正確に示しているものはありません。
ありがとう!
これを試しましたか:
PyGame 描画の基本
サイトから取得:
pygame.draw.rect(screen, color, (x,y,width,height), thickness) 長方形を描画します (x,y,width,height) は Python のタプルです x,y は左上隅の座標ですwidth, height は長方形の幅と高さで、thickness は線の太さです。ゼロの場合、長方形は塗りつぶされます