用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 # 右分支偏轉角度 c = random() * 15 + 10 # 左分支偏轉角度 d = l * (random() * 0.35 + 0.6) # 下一個分支的長度 # 右轉一定角度,畫右分支 right(b) tree(n - 1, d) # 左轉一定角度,畫左分支 left(b + c) tree(n - 1, d) # 轉回來 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) # 左轉90度 pu() # 抬筆 backward(300) # 後退300 tree(13, 100) # 遞迴7層 done()
繪圖如下:
第二種樹:
# 圖二: 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 # 右分支偏轉角度 c = random() * 15 + 10 # 左分支偏轉角度 d = l * (random() * 0.25 + 0.7) # 下一個分支的長度 # 右轉一定角度,畫右分支 right(b) tree(n - 1, d) # 左轉一定角度,畫左分支 left(b + c) tree(n - 1, d) # 轉回來 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) # 左轉90度 pu() # 抬筆 backward(300) # 後退300 tree(12, 100) # 遞迴7層 done()
繪圖如下:
第三種樹:
# 圖三: 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()
繪圖如下:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/755/viewspace-2833450/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 最美聖誕樹!用Python畫棵雪夜聖誕樹送給你Python
- 【python:turtle繪畫 聖誕樹】Python
- python中樹有哪些種類Python
- 心情不好的時候,用 Python 畫棵櫻花樹送給自己吧Python
- 用 vue + d3 畫一棵樹Vue
- 用Python生成馬賽克畫Python
- 機器學習_用樹迴歸方法畫股票趨勢線機器學習
- Python——畫一棵漂亮的櫻花樹(不同種櫻花+玫瑰+聖誕樹喔)Python
- 用Python畫一把扇子Python
- 學Python能掙多少錢?哪些人適合學Python?Python
- python你用過哪些模組Python
- Python除了人工智慧,還能從事哪些工作?Python人工智慧
- R語言:畫樹圖R語言
- 一行HTML也能畫畫?來一個!HTML
- python應用於哪些方面Python
- 線段樹也能是 Trie 樹 題解
- 使用Python在Excel畫畫PythonExcel
- 用Python畫個生日蛋糕為朋友慶生Python
- BI工具的應用能給企業帶來哪些收益?
- 用 CSS 做畫素畫CSS
- 折半查詢排序樹畫圖和排序
- Python入門必學,用Python練習畫個美隊盾牌Python
- python字元畫Python字元
- 植樹節,程式設計師要爬哪些“樹”?程式設計師
- CSS控制border畫一棵小樹CSS
- Python應用於哪些領域 如何更快入門PythonPython
- 用程式碼畫兩棵聖誕樹送給你【附詳細程式碼】
- Linux能應用於哪些方面?如何自學Linux運維?Linux運維
- 人臉識別主機板能應用哪些產品裝置?
- 快端午了,用Python畫一盤粽子送給你Python
- Python技能樹Python
- Python有哪些好用且實用的Web框架?PythonWeb框架
- 什麼是Python?主要運用哪些方面?Python
- 學Python需要多久?應用領域有哪些?Python
- 用 Linux、Python 和樹莓派釀製啤酒LinuxPython樹莓派
- python都應用於哪些領域?Python開發學習Python
- 《柯爾特峽谷》用細節樹立畫素 Roguelike 槍戰遊戲標杆遊戲
- 漫畫演算法:什麼是 B 樹?演算法