-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFractalH.py
71 lines (55 loc) · 1.79 KB
/
FractalH.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#Tortuga magica (Easter Egg)(Import necesario)
import turtle as potte
#---Funciones---
#Forward que tanto va a continuar, right(xx) que tanto va a rotar hacia la derecha
#left(xx) que tanto va a rotar hacia la izquierda
#Se necesitan 90 grados para rotar y darle el sentido opuesto a donde termina
def fractalH(iterations, center, length):
potte.color('blue')
if iterations < 0: #Caso base
return
#En caso tal se empiece desde un punto distinto al centro
if center is not None:
potte.penup()
potte.goto(center)
potte.pendown()
#Hace las ramas o Hs (aches) de la parte inferior derecha
potte.forward(length / 2)
potte.right(90)
potte.forward(length / 2)
potte.left(90)
fractalH(iterations - 1, None, length / 2)
#Se devuelve
potte.left(90)
potte.forward(length)
potte.right(90)
fractalH(iterations - 1, None, length / 2)
#Completa las ramas o Hs (aches) de la parte inferior derecha (->H, este ladito)
#Y empiezas con las Hs superiores
potte.right(90)
potte.forward(length / 2)
potte.right(90)
potte.forward(length)
potte.left(90)
potte.forward(length / 2)
potte.right(90)
fractalH(iterations - 1, None, length / 2)
potte.right(90)
potte.forward(length)
potte.right(90)
fractalH(iterations - 1, None, length / 2)
#Regresa a la tortuga al centro de todo para empezar con el lado izquierdo
potte.right(90)
potte.forward(length / 2)
potte.left(90)
potte.forward(length / 2)
#Una vez terminado con el lado izquierdo deja la tortuga en el centro
#--Main--
def fractal():
#Empieza
n = int(input('Digite n: '))
potte.speed(0)
fractalH(n, (0, 0), 200)
print('Hojas: ' + str(4**(n+1)))
#Salida
potte.exitonclick()