码迷,mamicode.com
首页 > 其他好文 > 详细

pygame学习之绘制圆

时间:2016-12-05 01:43:21      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:date   imp   exit   local   update   position   win   event   down   

 1 import pygame
 2 from pygame.locals import *
 3 
 4 pygame.init()
 5 screen = pygame.display.set_mode((600, 500))
 6 pygame.display.set_caption("drawing a circle")
 7 while True:
 8     for event in pygame.event.get():
 9         if event.type in (QUIT, KEYDOWN):
10             exit()
11     screen.fill((0, 0, 200))
12     color = 255, 255, 0
13     position = 300, 250
14     radius = 100                 # 圆的半径
15     width = 10
16     pygame.draw.circle(screen, color, position, radius, width)
17     pygame.display.update()

 

pygame学习之绘制圆

标签:date   imp   exit   local   update   position   win   event   down   

原文地址:http://www.cnblogs.com/mazhong/p/6132445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!