pygame.draw
# -*- coding:utf-8 -*-
import pygame,math
from pygame.locals import *
import sys
pygame.init...()
screen = pygame.display.set_mode((480,853),pygame.RESIZABLE,0)
pygame.display.set_caption("Python.pygame...(screen,color,sixpos,3)
# 椭圆
pygame.draw.ellipse(screen, (0xCC, 0xCC, 0x00), ((150, 150), (120..., 150)), 0)
#弧形绘制 cgrct(圆心,半径相同为圆)
pygame.draw.arc(screen,color,((240, 150), (200, 200)), 0,...(screen,color,True,((200,500),(300,700),(400,750)),1)
pygame.display.update()
建议参考官方文档:pygame.draw