溫馨提示×

溫馨提示×

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

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

python中turtle如何畫樹

發(fā)布時間:2020-11-13 09:22:39 來源:億速云 閱讀:528 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)python中turtle如何畫樹的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

代碼:

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漸進(jìn),0最快
tracer(0, 0)
pu() # 抬筆
backward(100)
left(90) # 左轉(zhuǎn)90度
pu() # 抬筆
backward(300) # 后退300
tree(12, 100) # 遞歸7層
done()

成果:

python中turtle如何畫樹

 

感謝各位的閱讀!關(guān)于python中turtle如何畫樹就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI