美文网首页
17作pygame

17作pygame

作者: 大黄蜂人工智能 | 来源:发表于2018-10-23 10:42 被阅读0次
import pygame
import random

def rand_color():
    """随机颜色"""
    return random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)

pygame.init()
screen = pygame.display.set_mode((600, 400))
screen.fill((255, 255, 255))

# 画图(pygame.draw)
"""
1.画线
def line(Surface, color, start_pos, end_pos, width=1)
Surface: 窗口, 图片, 文字对象
color:线的颜色
start_pos,end_pos: 起点和终点(坐标)
width:宽度
"""
pygame.draw.line(screen, (0, 0, 0), (50, 50), (100, 100), 5)

"""
def lines(Surface, color, closed, pointlist, width=1)
closed: 是否连接起点和终点
pointlist: 列表,列表中的元素是点对应的元祖
"""
points = [(50, 100), (200, 100), (250, 200), (120, 250), (30, 160)]
pygame.draw.lines(screen, (255, 0, 0), True, points, 6)

"""
2.画圆
def circle(Surface, color, pos, radius, width=0)
pos: 圆心位置
radius: 半径
width: 默认0(填充)
"""
pygame.draw.circle(screen, (255, 255, 0), (100, 200), 80, 0)


"""
def arc(Surface, color, Rect, start_angle, stop_angle, width=1)
Rect: (x, y, w, h)
start_angle, stop_angle: 弧度(0->0, 90->pi/2, 45 -> pi/4)
"""
from math import pi
screen.fill((255, 255, 255))  # 将之前画的全部覆盖掉
pygame.draw.arc(screen, rand_color(), (250, 150, 100, 100), pi/4, pi/4*3, 4)

pygame.draw.circle(screen, (255, 255, 0), (300, 200), 80, 0)
pygame.draw.arc(screen,(255,0,255), (250, 150, 100, 100), pi*2/4, pi/4*3, 4)
pygame.draw.arc(screen,(255,0,255), (300, 150, 100, 100), pi*1/4, pi*2/4, 4)
pygame.draw.circle(screen, (100, 100, 0), (300, 200), 20, 0)
pygame.draw.circle(screen, (100, 100, 0), (350, 200), 20, 0)
pygame.draw.circle(screen, (0, 0,0), (300, 200), 5, 0)
pygame.draw.circle(screen, (0, 0,0), (350, 200), 5, 0)
pygame.draw.arc(screen,(0,0,0), (250, 20, 100, 100), pi*5/4, pi*6/4, 4)
pygame.draw.arc(screen,(0,0,0), (300, 150, 100, 100), pi*5/4, pi*6/4, 4)



pygame.display.flip()

while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            exit()

相关文章

  • 17作pygame

  • 12作 pygame知识

  • day 17 pygame

    1recode 1.json数据json数据的要求:a.一个json对应一个数据b.json中的数据一定是json...

  • 17总 pygame

    复习: 1.json数据 json数据的要求:a.一个json对应一个数据b.json中的数据一定是json支持的...

  • 2018-09-04-pygame

    一、pygame基本操作 import pygame——导入pygame模块 pygame.init()——初始化...

  • Pygame入门--飞机大战案例

    Pygame的快速入门 #导入pygame模块 import pygame #游戏初始化 pygame.init(...

  • Day_10 异常与pygame

    异常捕获 pygame操作流程 pygame显示文字 pygame显示图片与图片操作 pygame基本显示

  • Pygame-hello world

    使用pygame 模块名功能pygame.cdrom访问光驱pygame.cursors加载光标pygame.di...

  • pygame - alphabet

    pygame install pygame install[https://www.pygame.org/wiki...

  • Day17-pygame

    一、抽象类和抽象方法 抽象类:只能被继承不能实例化(不能创建对象) 抽象方法:声明的时候不用实现,在子类中必须去重...

网友评论

      本文标题:17作pygame

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