Python中的畫圖初體驗

來源:互聯網
上載者:User

標籤:

學到《父與子編程之旅》的16章了,跟書上的例子進行學習,學會了畫圓,我又找到了畫線的方法,於是就可以在screen上畫日本國旗了:

手動畫的不好看,也可以不手動畫,直接畫線:

代碼如下:

 1 import pygame,sys   2 from pygame.locals import *  3 print pygame.ver 4 pygame.init() 5 screen = pygame.display.set_mode([640,480]) 6 color=(200,156,64)   7 points=[]  8 screen.fill([255,255,255]) 9 pygame.draw.circle(screen,[255,0,0],[200,200],70,0)10 pygame.draw.line(screen,color,(20,20),(400,20),1)11 pygame.draw.line(screen,color,(20,20),(20,400),1)12 pygame.draw.line(screen,color,(20,400),(400,400),1)13 pygame.draw.line(screen,color,(400,400),(400,20),1)14 pygame.display.flip()15 running = True16 while running:17     for event in pygame.event.get():18         if event.type == pygame.QUIT:19             running = False20 ##        if event.type==MOUSEBUTTONDOWN:  21 ##            points.append(event.pos)22 ##    if len(points)>1:  23 ##        pygame.draw.lines(screen,color, False, points, 5)24 ##    pygame.display.update()  25 pygame.quit()

Python中的畫圖初體驗

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.