91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 3.47KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發布日期: 2021-03-03
  • 語言: Python
  • 標簽: turtle??python??動畫??

資源簡介


資源截圖

代碼片段和文件信息

#!/usr/bin/env?python3
“““???????xturtle-example-suite:

??????????xtx_kites_and_darts.py

Constructs?two?aperiodic?penrose-tilings
consisting?of?kites?and?darts?by?the?method
of?inflation?in?six?steps.

Starting?points?are?the?patterns?“sun“
consisting?of?five?kites?and?“star“
consisting?of?five?darts.

For?more?information?see:
?http://en.wikipedia.org/wiki/Penrose_tiling
?-------------------------------------------
“““
from?turtle?import?*
from?math?import?cos?pi
from?time?import?perf_counter?as?clock?sleep

f?=?(5**0.5-1)/2.0???#?(sqrt(5)-1)/2?--?golden?ratio
d?=?2?*?cos(3*pi/10)

def?kite(l):
????fl?=?f?*?l
????lt(36)
????fd(l)
????rt(108)
????fd(fl)
????rt(36)
????fd(fl)
????rt(108)
????fd(l)
????rt(144)

def?dart(l):
????fl?=?f?*?l
????lt(36)
????fd(l)
????rt(144)
????fd(fl)
????lt(36)
????fd(fl)
????rt(144)
????fd(l)
????rt(144)

def?inflatekite(l?n):
????if?n?==?0:
????????px?py?=?pos()
????????h?x?y?=?int(heading())?

評論

共有 條評論