美文网首页
2018-10-22作业

2018-10-22作业

作者: 癫狂麦芽糖 | 来源:发表于2018-10-22 21:13 被阅读0次

pygame创建头像

import pygame
import math
pygame.init()
screen=pygame.display.set_mode((400,600))
screen.fill((255, 255, 255))
pygame.draw.circle(screen,(255,0,0),(150,150),60)
pygame.draw.circle(screen,(0,0,0),(100,150),30)
pygame.draw.arc(screen,(0,255,0),(100,100,200,200),math.pi,math.pi*2,8)
pygame.display.flip()

WeChat Screenshot_20181022211315.png

相关文章

网友评论

      本文标题:2018-10-22作业

      本文链接:https://www.haomeiwen.com/subject/qkjnzftx.html