您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么用Python和Pygame繪制小球的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么用Python和Pygame繪制小球文章都會有所收獲,下面我們一起來看看吧。
1.在文件里找到設置
2.在項目里找到python解釋器,點擊右邊的加號
3.搜素pygame并安裝
同理下載pgzero安裝包
代碼
import pgzrun def draw(): screen.fill('green') screen.draw.filled_circle((400,300),30,'red') pgzrun.go()
fill后面的green表示設置背景的填充顏色為綠色
filled_circle后面的(400,300)表示圓中心位置坐標,30表示圓的半徑,red表示圓的顏色
執行結果
代碼
import pgzrun r=1 def draw(): screen.fill('black') screen.draw.filled_circle((400,300),r,'red') def update(): global r r=r+1 pgzrun.go()
執行結果
代碼
import pgzrun y=100 def draw(): screen.fill('black') screen.draw.filled_circle((400,y),30,'red') def update(): global y y=y+1 pgzrun.go()
小球的半徑從1開始,每次增加1
執行結果
代碼
import pgzrun y=100 def draw(): screen.fill('black') screen.draw.filled_circle((400,y),30,'red') def update(): global y y=y+1 if y>600: y=0 pgzrun.go()
代碼:
import pgzrun y=100 t=3 def draw(): screen.fill('black') screen.draw.filled_circle((400,y),30,'red') def update(): global y,t y=y+t if y>=570: t=-t if y<=30: t=-t pgzrun.go()
執行結果
關于“怎么用Python和Pygame繪制小球”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么用Python和Pygame繪制小球”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。