用python畫星空是怎樣的呢?下面就讓我們一起來(lái)了解一下吧:
在繪制星空的過(guò)程中一般需要運(yùn)用到turtle工具,它是屬于Python的標(biāo)準(zhǔn)庫(kù),當(dāng)然也可以將其稱之為海龜庫(kù),它能夠用于描繪繪圖的軌跡,并且操作也比較簡(jiǎn)單、便捷。
參考范例:
用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)#這里要設(shè)為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()
以上就是小編的分享了,希望能夠幫助到大家。
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com