溫馨提示×

溫馨提示×

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

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

Python畫樹的方法

發(fā)布時間:2020-07-02 15:23:58 來源:億速云 閱讀:405 作者:清晨 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(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漸進(jìn),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漸進(jìn),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é)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向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