91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用python代碼實現星空畫面

發布時間:2020-06-19 11:29:28 來源:億速云 閱讀:1903 作者:Leah 欄目:編程語言

這篇文章給大家分享的是用python代碼實現星空畫面的方法,相信大部分人都還沒學會這個技能,為了讓大家學會,給大家總結了以下內容,話不多說,一起往下看吧。

源代碼:

from turtle import *
from random import random,randint
screen = Screen()
width ,height = 800,600
screen.setup(width,height)
screen.title("模擬3D星空")
screen.bgcolor("black")
screen.mode("logo")
screen.delay(0)#這里要設為0,否則很卡
t = Turtle(visible = False,shape='circle')
t.pencolor("white")
t.fillcolor("white")
t.penup()
t.setheading(-90)
t.goto(width/2,randint(-height/2,height/2))
stars = []
for i in range(200):
    star = t.clone()
    s =random() /3
    star.shapesize(s,s)
    star.speed(int(s*10))
    star.setx(width/2 + randint(1,width))
    star.sety( randint(-height/2,height/2))
    star.showturtle()
    stars.append(star)
while True:
    for star in stars:
        star.setx(star.xcor() - 3 * star.speed())
    if star.xcor()<-width/2:
        star.hideturtle()
        star.setx(width/2 + randint(1,width))
        star.sety( randint(-height/2,height/2))
        star.showturtle()

如何用python代碼實現星空畫面

以上就是用python代碼實現星空畫面的方法,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊,感謝各位的閱讀。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇江市| 当涂县| 平安县| 静宁县| 九江市| 明水县| 平顺县| 永和县| 泸定县| 沈丘县| 安宁市| 扬中市| 布拖县| 介休市| 永兴县| 屏东市| 宜春市| 台中市| 鹤山市| 伊吾县| 东阳市| 白河县| 潼关县| 沧州市| 望奎县| 嘉善县| 南阳市| 吉安市| 固镇县| 新绛县| 湾仔区| 米脂县| 象州县| 鞍山市| 博乐市| 铅山县| 沙雅县| 皋兰县| 靖边县| 鲁山县| 怀柔区|