Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.39.4
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib64 /
python2.7 /
Demo /
turtle /
[ HOME SHELL ]
Name
Size
Permission
Action
about_turtle.txt
3.44
KB
-rw-r--r--
about_turtledemo.txt
302
B
-rw-r--r--
demohelp.txt
2.96
KB
-rw-r--r--
tdemo_I_dontlike_tiltdemo.py
1.05
KB
-rwxr-xr-x
tdemo_I_dontlike_tiltdemo.pyc
1.62
KB
-rw-r--r--
tdemo_I_dontlike_tiltdemo.pyo
1.62
KB
-rw-r--r--
tdemo_bytedesign.py
4.12
KB
-rwxr-xr-x
tdemo_bytedesign.pyc
5.19
KB
-rw-r--r--
tdemo_bytedesign.pyo
5.19
KB
-rw-r--r--
tdemo_chaos.py
951
B
-rw-r--r--
tdemo_chaos.pyc
2.24
KB
-rw-r--r--
tdemo_chaos.pyo
2.24
KB
-rw-r--r--
tdemo_clock.py
3.14
KB
-rwxr-xr-x
tdemo_clock.pyc
4.43
KB
-rw-r--r--
tdemo_clock.pyo
4.43
KB
-rw-r--r--
tdemo_colormixer.py
1.31
KB
-rw-r--r--
tdemo_colormixer.pyc
2.31
KB
-rw-r--r--
tdemo_colormixer.pyo
2.31
KB
-rw-r--r--
tdemo_fractalcurves.py
3.33
KB
-rwxr-xr-x
tdemo_fractalcurves.pyc
3.44
KB
-rw-r--r--
tdemo_fractalcurves.pyo
3.44
KB
-rw-r--r--
tdemo_lindenmayer_indian.py
2.38
KB
-rwxr-xr-x
tdemo_lindenmayer_indian.pyc
3.52
KB
-rw-r--r--
tdemo_lindenmayer_indian.pyo
3.52
KB
-rw-r--r--
tdemo_minimal_hanoi.py
2
KB
-rwxr-xr-x
tdemo_minimal_hanoi.pyc
3.54
KB
-rw-r--r--
tdemo_minimal_hanoi.pyo
3.54
KB
-rw-r--r--
tdemo_nim.py
6.36
KB
-rw-r--r--
tdemo_nim.pyc
9.16
KB
-rw-r--r--
tdemo_nim.pyo
9.16
KB
-rw-r--r--
tdemo_paint.py
1.26
KB
-rwxr-xr-x
tdemo_paint.pyc
1.86
KB
-rw-r--r--
tdemo_paint.pyo
1.86
KB
-rw-r--r--
tdemo_peace.py
1.04
KB
-rwxr-xr-x
tdemo_peace.pyc
1.36
KB
-rw-r--r--
tdemo_peace.pyo
1.36
KB
-rw-r--r--
tdemo_penrose.py
3.45
KB
-rwxr-xr-x
tdemo_penrose.pyc
5.86
KB
-rw-r--r--
tdemo_penrose.pyo
5.86
KB
-rw-r--r--
tdemo_planet_and_moon.py
2.76
KB
-rwxr-xr-x
tdemo_planet_and_moon.pyc
4.43
KB
-rw-r--r--
tdemo_planet_and_moon.pyo
4.43
KB
-rw-r--r--
tdemo_tree.py
1.38
KB
-rwxr-xr-x
tdemo_tree.pyc
2.07
KB
-rw-r--r--
tdemo_tree.pyo
2.07
KB
-rw-r--r--
tdemo_two_canvases.py
1.09
KB
-rw-r--r--
tdemo_two_canvases.pyc
1.6
KB
-rw-r--r--
tdemo_two_canvases.pyo
1.6
KB
-rw-r--r--
tdemo_wikipedia.py
1.32
KB
-rw-r--r--
tdemo_wikipedia.pyc
1.91
KB
-rw-r--r--
tdemo_wikipedia.pyo
1.91
KB
-rw-r--r--
tdemo_yinyang.py
807
B
-rwxr-xr-x
tdemo_yinyang.pyc
1.29
KB
-rw-r--r--
tdemo_yinyang.pyo
1.29
KB
-rw-r--r--
turtle.cfg
160
B
-rw-r--r--
turtleDemo.py
9.85
KB
-rwxr-xr-x
turtleDemo.pyc
10.69
KB
-rw-r--r--
turtleDemo.pyo
10.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tdemo_fractalcurves.py
#! /usr/bin/python2.7 """ 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, 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.tracer(1,0) ft.pu() size = 6 ft.setpos(-33*size, -32*size) ft.pd() ta=clock() ft.fillcolor("red") ft.fill(True) 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.fill(False) tb=clock() res = "Hilbert: %.2fsec. " % (tb-ta) sleep(3) ft.reset() ft.speed(0) ft.ht() ft.tracer(1,0) ta=clock() ft.color("black", "blue") ft.fill(True) ft.fractalgon(3, 250, 4, 1) ft.fill(True) ft.color("red") ft.fractalgon(3, 200, 4, -1) ft.fill(False) tb=clock() res += "Koch: %.2fsec." % (tb-ta) return res if __name__ == '__main__': msg = main() print msg mainloop()
Close