0
請非常特殊,因爲它`我第一次在pygame的工作:d如何使該程序中的三角形旋轉?
#!/usr/bin/env python
import pygame
pygame.init()
#colors
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
PI = 3.141592653
size = (400, 500)
screen = pygame.display.set_mode(size)
pygame.display.set_caption("Professor Craven's Cool Game")
done = False
clock = pygame.time.Clock()
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
screen.fill(WHITE)
pygame.draw.polygon(screen, BLACK, [[100, 100], [0, 200], [200, 200]], 5)
font = pygame.font.SysFont('Calibri', 25, True, False)
text = font.render("Text", True, BLACK)
screen.blit(text, [250, 250])
pygame.display.flip()
是的,如果我在這段代碼中有一個錯誤也請告訴我。我很樂意學習關於pygame的新東西。
clock.tick(60)
pygame.quit()
你好* criasmina *!歡迎來到SO! :)請閱讀[我如何問一個好問題?](http://stackoverflow.com/help/how-to-ask)和編輯您的文章(修復縮進...),所以我們能夠幫助你。 :) – elegent
我有一個三角形,我必須讓他旋轉。 :) – criasmina