-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSierpinski_Carpet.py
54 lines (42 loc) · 1.28 KB
/
Sierpinski_Carpet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#Imports necesarios (Easter Egg)
import turtle as potte
#---Funciones---
def sierpinski_Carpet(iterations, l):
if iterations == 0: #Case base
#Dibuja los rectangulos llenos
potte.color('red', 'darkgray')
potte.begin_fill()
for _ in range (4):
potte.forward(l)
potte.left(90)
potte.end_fill()
else: #Magia
#Al rededor del centro crea 8 rectangulos pequeñitos
#Crea dos rectangulos de cada lado
#Repite 4 veces
for _ in range(4):
#Primer rectangulo
sierpinski_Carpet(iterations-1, l/3)
potte.forward(l/3)
#Seguno rectangulo
sierpinski_Carpet(iterations-1, l/3)
potte.forward(l/3)
#Para la otra esquina
potte.forward(l/3)
potte.left(90)
#El update de toda la vida
potte.update()
#---main---
def fractal():
#Para que lo haga más rápido (Evoluciona a liebre)
potte.speed(0)
#Empieza
n = int(input('Digite n: '))
potte.penup()
potte.goto((-400)/2, (-400/2))
potte.pendown()
sierpinski_Carpet(n, 400)
area = (((400)/(3*n))**2)* 8**n
print('El area es: ' + str(area / 400))
#Salida
potte.exitOnClick()