$15 GRAYBYTE WORDPRESS FILE MANAGER $22

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/usr/lib64/python3.8/turtledemo/

HOME
Current File : /usr/lib64/python3.8/turtledemo//penrose.py
#! /usr/bin/python3.8
"""       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()), round(px,3), round(py,3)
        tiledict[(h,x,y)] = True
        return
    fl = f * l
    lt(36)
    inflatedart(fl, n-1)
    fd(l)
    rt(144)
    inflatekite(fl, n-1)
    lt(18)
    fd(l*d)
    rt(162)
    inflatekite(fl, n-1)
    lt(36)
    fd(l)
    rt(180)
    inflatedart(fl, n-1)
    lt(36)

def inflatedart(l, n):
    if n == 0:
        px, py = pos()
        h, x, y = int(heading()), round(px,3), round(py,3)
        tiledict[(h,x,y)] = False
        return
    fl = f * l
    inflatekite(fl, n-1)
    lt(36)
    fd(l)
    rt(180)
    inflatedart(fl, n-1)
    lt(54)
    fd(l*d)
    rt(126)
    inflatedart(fl, n-1)
    fd(l)
    rt(144)

def draw(l, n, th=2):
    clear()
    l = l * f**n
    shapesize(l/100.0, l/100.0, th)
    for k in tiledict:
        h, x, y = k
        setpos(x, y)
        setheading(h)
        if tiledict[k]:
            shape("kite")
            color("black", (0, 0.75, 0))
        else:
            shape("dart")
            color("black", (0.75, 0, 0))
        stamp()

def sun(l, n):
    for i in range(5):
        inflatekite(l, n)
        lt(72)

def star(l,n):
    for i in range(5):
        inflatedart(l, n)
        lt(72)

def makeshapes():
    tracer(0)
    begin_poly()
    kite(100)
    end_poly()
    register_shape("kite", get_poly())
    begin_poly()
    dart(100)
    end_poly()
    register_shape("dart", get_poly())
    tracer(1)

def start():
    reset()
    ht()
    pu()
    makeshapes()
    resizemode("user")

def test(l=200, n=4, fun=sun, startpos=(0,0), th=2):
    global tiledict
    goto(startpos)
    setheading(0)
    tiledict = {}
    tracer(0)
    fun(l, n)
    draw(l, n, th)
    tracer(1)
    nk = len([x for x in tiledict if tiledict[x]])
    nd = len([x for x in tiledict if not tiledict[x]])
    print("%d kites and %d darts = %d pieces." % (nk, nd, nk+nd))

def demo(fun=sun):
    start()
    for i in range(8):
        a = clock()
        test(300, i, fun)
        b = clock()
        t = b - a
        if t < 2:
            sleep(2 - t)

def main():
    #title("Penrose-tiling with kites and darts.")
    mode("logo")
    bgcolor(0.3, 0.3, 0)
    demo(sun)
    sleep(2)
    demo(star)
    pencolor("black")
    goto(0,-200)
    pencolor(0.7,0.7,1)
    write("Please wait...",
          align="center", font=('Arial Black', 36, 'bold'))
    test(600, 8, startpos=(70, 117))
    return "Done"

if __name__ == "__main__":
    msg = main()
    mainloop()

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
31 Aug 2024 8.58 AM
root / root
0755
__pycache__
--
31 Aug 2024 8.58 AM
root / root
0755
__init__.py
0.307 KB
6 Jun 2023 8.32 PM
root / root
0644
__main__.py
13.907 KB
18 Oct 2023 1.12 AM
root / root
0644
bytedesign.py
4.147 KB
6 Jun 2023 8.32 PM
root / root
0755
chaos.py
0.929 KB
6 Jun 2023 8.32 PM
root / root
0644
clock.py
3.125 KB
6 Jun 2023 8.32 PM
root / root
0755
colormixer.py
1.308 KB
6 Jun 2023 8.32 PM
root / root
0644
forest.py
2.896 KB
6 Jun 2023 8.32 PM
root / root
0755
fractalcurves.py
3.391 KB
6 Jun 2023 8.32 PM
root / root
0755
lindenmayer.py
2.376 KB
6 Jun 2023 8.32 PM
root / root
0755
minimal_hanoi.py
2.002 KB
6 Jun 2023 8.32 PM
root / root
0755
nim.py
6.36 KB
6 Jun 2023 8.32 PM
root / root
0644
paint.py
1.26 KB
6 Jun 2023 8.32 PM
root / root
0755
peace.py
1.04 KB
6 Jun 2023 8.32 PM
root / root
0755
penrose.py
3.3 KB
6 Jun 2023 8.32 PM
root / root
0755
planet_and_moon.py
2.758 KB
6 Jun 2023 8.32 PM
root / root
0755
rosette.py
1.329 KB
6 Jun 2023 8.32 PM
root / root
0644
round_dance.py
1.762 KB
6 Jun 2023 8.32 PM
root / root
0644
sorting_animate.py
4.911 KB
18 Oct 2023 1.12 AM
root / root
0644
tree.py
1.367 KB
6 Jun 2023 8.32 PM
root / root
0755
turtle.cfg
0.156 KB
6 Jun 2023 8.32 PM
root / root
0644
two_canvases.py
1.093 KB
6 Jun 2023 8.32 PM
root / root
0644
yinyang.py
0.801 KB
6 Jun 2023 8.32 PM
root / root
0755

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF