中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Python畫樹的方法-創(chuàng)新互聯(lián)

創(chuàng)新互聯(lián)www.cdcxhl.cn八線動態(tài)BGP香港云服務(wù)器提供商,新人活動買多久送多久,劃算不套路!

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名申請、雅安服務(wù)器托管、營銷軟件、網(wǎng)站建設(shè)、金寨網(wǎng)站維護、網(wǎng)站推廣。

這篇文章將為大家詳細講解有關(guān)Python畫樹的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

用Python畫出的三種樹:

第一種樹:

# 圖一:
from turtle import *
from random import *
from math import *
 
def tree(n, l):
    pd() # 下筆
    # 陰影效果
    t = cos(radians(heading() + 45)) / 8 + 0.25
    pencolor(t, t, t)
    pensize(n / 4)
    forward(l) # 畫樹枝
 
 
    if n > 0:
        b = random() * 15 + 10 # 右分支偏轉(zhuǎn)角度
        c = random() * 15 + 10 # 左分支偏轉(zhuǎn)角度
        d = l * (random() * 0.35 + 0.6) # 下一個分支的長度
        # 右轉(zhuǎn)一定角度,畫右分支
        right(b)
        tree(n - 1, d)
        # 左轉(zhuǎn)一定角度,畫左分支
        left(b + c)
        tree(n - 1, d)
 
        # 轉(zhuǎn)回來
        right(c)
    else:
        # 畫葉子
        right(90)
        n = cos(radians(heading() - 45)) / 4 + 0.5
        pencolor(n, n, n)
        circle(2)
        left(90)
 
 
    pu()
    backward(l)# 退回
 
bgcolor(0.5, 0.5, 0.5) # 背景色
ht() # 隱藏turtle
speed(0) # 速度,1-10漸進,0最快
tracer(0, 0)
left(90) # 左轉(zhuǎn)90度
pu() # 抬筆
backward(300) # 后退300
tree(13, 100) # 遞歸7層
done()

繪圖如下:

Python畫樹的方法

第二種樹:

# 圖二:
from turtle import *
from random import *
from math import *
 
def tree(n, l):
    pd() # 下筆
    # 陰影效果
    t = cos(radians(heading() + 45)) / 8 + 0.25
    pencolor(t, t, t)
    pensize(n / 3)
    forward(l) # 畫樹枝
 
 
    if n > 0:
        b = random() * 15 + 10 # 右分支偏轉(zhuǎn)角度
        c = random() * 15 + 10 # 左分支偏轉(zhuǎn)角度
        d = l * (random() * 0.25 + 0.7) # 下一個分支的長度
        # 右轉(zhuǎn)一定角度,畫右分支
        right(b)
        tree(n - 1, d)
        # 左轉(zhuǎn)一定角度,畫左分支
        left(b + c)
        tree(n - 1, d)
 
        # 轉(zhuǎn)回來
        right(c)
    else:
        # 畫葉子
        right(90)
        n = cos(radians(heading() - 45)) / 4 + 0.5
        pencolor(n, n*0.8, n*0.8)
        circle(3)
        left(90)
 
        # 添加0.3倍的飄落葉子
        if(random() > 0.7):
            pu()
            # 飄落
            t = heading()
            an = -40 + random()*40
            setheading(an)
            dis = int(800*random()*0.5 + 400*random()*0.3 + 200*random()*0.2)
            forward(dis)
            setheading(t)
 
 
            # 畫葉子
            pd()
            right(90)
            n = cos(radians(heading() - 45)) / 4 + 0.5
            pencolor(n*0.5+0.5, 0.4+n*0.4, 0.4+n*0.4)
            circle(2)
            left(90)
            pu()
 
            #返回
            t = heading()
            setheading(an)
            backward(dis)
            setheading(t)
 
    pu()
    backward(l)# 退回
 
bgcolor(0.5, 0.5, 0.5) # 背景色
ht() # 隱藏turtle
speed(0) # 速度,1-10漸進,0最快
tracer(0, 0)
pu() # 抬筆
backward(100)
left(90) # 左轉(zhuǎn)90度
pu() # 抬筆
backward(300) # 后退300
tree(12, 100) # 遞歸7層
done()

繪圖如下:

Python畫樹的方法

第三種樹:

# 圖三:
import turtle
import random
from turtle import *
from time import sleep
 
t = turtle.Turtle()
w = turtle.Screen()
 
 
def tree(branchLen, t):
    if branchLen > 3:
        if 8 <= branchLen <= 12:
            if random.randint(0, 2) == 0:
                t.color('snow')
            else:
                t.color('lightcoral')
            t.pensize(branchLen / 3)
        elif branchLen < 8:
            if random.randint(0, 1) == 0:
                t.color('snow')
            else:
                t.color('lightcoral')
            t.pensize(branchLen / 2)
        else:
            t.color('sienna')
            t.pensize(branchLen / 10)
 
        t.forward(branchLen)
        a = 1.5 * random.random()
        t.right(20*a)
        b = 1.5 * random.random()
        tree(branchLen-10*b, t)
        t.left(40*a)
        tree(branchLen-10*b, t)
        t.right(20*a)
        t.up()
        t.backward(branchLen)
        t.down()
 
 
def petal(m, t):  # 樹下花瓣
    for i in range(m):
        a = 200 - 400 * random.random()
        b = 10 - 20 * random.random()
        t.up()
        t.forward(b)
        t.left(90)
        t.forward(a)
        t.down()
        t.color("lightcoral")
        t.circle(1)
        t.up()
        t.backward(a)
        t.right(90)
        t.backward(b)
 
 
def main():
    t = turtle.Turtle()
    myWin = turtle.Screen()
    getscreen().tracer(5, 0)
    turtle.screensize(bg='wheat')
    t.left(90)
    t.up()
    t.backward(150)
    t.down()
    t.color('sienna')
    tree(60, t)
    petal(100, t)
 
    myWin.exitonclick()
 
 
main()

繪圖如下:

Python畫樹的方法

關(guān)于Python畫樹的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

網(wǎng)頁題目:Python畫樹的方法-創(chuàng)新互聯(lián)
瀏覽路徑:http://www.rwnh.cn/article40/csicho.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化網(wǎng)站導(dǎo)航、商城網(wǎng)站、定制網(wǎng)站、ChatGPT、網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)
会同县| 逊克县| 巢湖市| 鹿泉市| 班玛县| 贡山| 镇沅| 邓州市| 江源县| 垦利县| 泽普县| 磐石市| 峡江县| 田阳县| 安福县| 万载县| 祥云县| 长治县| 福建省| 陆丰市| 云和县| 崇左市| 贵州省| 铜鼓县| 卢氏县| 宁波市| 新沂市| 确山县| 绥芬河市| 咸宁市| 平谷区| 洛隆县| 海丰县| 绥江县| 高阳县| 清原| 宁强县| 香格里拉县| 潞城市| 河北省| 若羌县|