GRAYBYTE WORDPRESS FILE MANAGER9916

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/lib64/python3.8/turtledemo/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/lib64/python3.8/turtledemo//fractalcurves.py
#! /usr/bin/python3.8
"""      turtle-example-suite:

        tdemo_fractalCurves.py

This program draws two fractal-curve-designs:
(1) A hilbert curve (in a box)
(2) A combination of Koch-curves.

The CurvesTurtle class and the fractal-curve-
methods are taken from the PythonCard example
scripts for turtle-graphics.
"""
from turtle import *
from time import sleep, perf_counter as clock

class CurvesTurtle(Pen):
    # example derived from
    # Turtle Geometry: The Computer as a Medium for Exploring Mathematics
    # by Harold Abelson and Andrea diSessa
    # p. 96-98
    def hilbert(self, size, level, parity):
        if level == 0:
            return
        # rotate and draw first subcurve with opposite parity to big curve
        self.left(parity * 90)
        self.hilbert(size, level - 1, -parity)
        # interface to and draw second subcurve with same parity as big curve
        self.forward(size)
        self.right(parity * 90)
        self.hilbert(size, level - 1, parity)
        # third subcurve
        self.forward(size)
        self.hilbert(size, level - 1, parity)
        # fourth subcurve
        self.right(parity * 90)
        self.forward(size)
        self.hilbert(size, level - 1, -parity)
        # a final turn is needed to make the turtle
        # end up facing outward from the large square
        self.left(parity * 90)

    # Visual Modeling with Logo: A Structural Approach to Seeing
    # by James Clayson
    # Koch curve, after Helge von Koch who introduced this geometric figure in 1904
    # p. 146
    def fractalgon(self, n, rad, lev, dir):
        import math

        # if dir = 1 turn outward
        # if dir = -1 turn inward
        edge = 2 * rad * math.sin(math.pi / n)
        self.pu()
        self.fd(rad)
        self.pd()
        self.rt(180 - (90 * (n - 2) / n))
        for i in range(n):
            self.fractal(edge, lev, dir)
            self.rt(360 / n)
        self.lt(180 - (90 * (n - 2) / n))
        self.pu()
        self.bk(rad)
        self.pd()

    # p. 146
    def fractal(self, dist, depth, dir):
        if depth < 1:
            self.fd(dist)
            return
        self.fractal(dist / 3, depth - 1, dir)
        self.lt(60 * dir)
        self.fractal(dist / 3, depth - 1, dir)
        self.rt(120 * dir)
        self.fractal(dist / 3, depth - 1, dir)
        self.lt(60 * dir)
        self.fractal(dist / 3, depth - 1, dir)

def main():
    ft = CurvesTurtle()

    ft.reset()
    ft.speed(0)
    ft.ht()
    ft.getscreen().tracer(1,0)
    ft.pu()

    size = 6
    ft.setpos(-33*size, -32*size)
    ft.pd()

    ta=clock()
    ft.fillcolor("red")
    ft.begin_fill()
    ft.fd(size)

    ft.hilbert(size, 6, 1)

    # frame
    ft.fd(size)
    for i in range(3):
        ft.lt(90)
        ft.fd(size*(64+i%2))
    ft.pu()
    for i in range(2):
        ft.fd(size)
        ft.rt(90)
    ft.pd()
    for i in range(4):
        ft.fd(size*(66+i%2))
        ft.rt(90)
    ft.end_fill()
    tb=clock()
    res =  "Hilbert: %.2fsec. " % (tb-ta)

    sleep(3)

    ft.reset()
    ft.speed(0)
    ft.ht()
    ft.getscreen().tracer(1,0)

    ta=clock()
    ft.color("black", "blue")
    ft.begin_fill()
    ft.fractalgon(3, 250, 4, 1)
    ft.end_fill()
    ft.begin_fill()
    ft.color("red")
    ft.fractalgon(3, 200, 4, -1)
    ft.end_fill()
    tb=clock()
    res +=  "Koch: %.2fsec." % (tb-ta)
    return res

if __name__  == '__main__':
    msg = main()
    print(msg)
    mainloop()

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 05 2024 23:45:16
root / root
0755
__pycache__
--
March 05 2024 23:45:13
root / root
0755
__init__.py
0.307 KB
June 06 2023 13:32:21
root / root
0644
__main__.py
13.907 KB
October 17 2023 18:12:57
root / root
0644
bytedesign.py
4.147 KB
June 06 2023 13:32:21
root / root
0755
chaos.py
0.929 KB
June 06 2023 13:32:21
root / root
0644
clock.py
3.125 KB
June 06 2023 13:32:21
root / root
0755
colormixer.py
1.308 KB
June 06 2023 13:32:21
root / root
0644
forest.py
2.896 KB
June 06 2023 13:32:21
root / root
0755
fractalcurves.py
3.391 KB
June 06 2023 13:32:21
root / root
0755
lindenmayer.py
2.376 KB
June 06 2023 13:32:21
root / root
0755
minimal_hanoi.py
2.002 KB
June 06 2023 13:32:21
root / root
0755
nim.py
6.36 KB
June 06 2023 13:32:21
root / root
0644
paint.py
1.26 KB
June 06 2023 13:32:21
root / root
0755
peace.py
1.04 KB
June 06 2023 13:32:21
root / root
0755
penrose.py
3.3 KB
June 06 2023 13:32:21
root / root
0755
planet_and_moon.py
2.758 KB
June 06 2023 13:32:21
root / root
0755
rosette.py
1.329 KB
June 06 2023 13:32:21
root / root
0644
round_dance.py
1.762 KB
June 06 2023 13:32:21
root / root
0644
sorting_animate.py
4.911 KB
October 17 2023 18:12:57
root / root
0644
tree.py
1.367 KB
June 06 2023 13:32:21
root / root
0755
turtle.cfg
0.156 KB
June 06 2023 13:32:21
root / root
0644
two_canvases.py
1.093 KB
June 06 2023 13:32:21
root / root
0644
yinyang.py
0.801 KB
June 06 2023 13:32:21
root / root
0755

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF