forked from JazzzFM/Latticed-Manim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.py
154 lines (121 loc) · 6.68 KB
/
Main.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# -*- coding: utf-8 -*-
import subprocess
import shlex, subprocess
def run():
while True:
command = str(input('''
██▓ ▄▄▄ ▄▄▄█████▓▄▄▄█████▓ ██▓ ▄████▄ ▓█████ ▓█████▄
▓██▒ ▒████▄ ▓ ██▒ ▓▒▓ ██▒ ▓▒▓██▒▒██▀ ▀█ ▓█ ▀ ▒██▀ ██▌
▒██░ ▒██ ▀█▄ ▒ ▓██░ ▒░▒ ▓██░ ▒░▒██▒▒▓█ ▄ ▒███ ░██ █▌
▒██░ ░██▄▄▄▄██░ ▓██▓ ░ ░ ▓██▓ ░ ░██░▒▓▓▄ ▄██▒▒▓█ ▄ ░▓█▄ ▌
░██████▒▓█ ▓██▒ ▒██▒ ░ ▒██▒ ░ ░██░▒ ▓███▀ ░░▒████▒░▒████▓
░ ▒░▓ ░▒▒ ▓▒█░ ▒ ░░ ▒ ░░ ░▓ ░ ░▒ ▒ ░░░ ▒░ ░ ▒▒▓ ▒
░ ░ ▒ ░ ▒ ▒▒ ░ ░ ░ ▒ ░ ░ ▒ ░ ░ ░ ░ ▒ ▒
░ ░ ░ ▒ ░ ░ ▒ ░░ ░ ░ ░ ░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░
░ ░
Herramienta para hacer visualizaciones y animaciones con retículas en 2D, 3D y 4D.
CIC - IPN - ESFM
- Made with manim, python and LaTex.
¿Cuál es la dimensión del Espacio donde vas a trabajar?
[D] Dimensión Dos |R^2
[T] Dimensión Tres |R^3
[C] Dimensión Cuatro |R^4
[s] salir
'''))
####################################################################################################################################################
# This is already! :D
if command == 'D':
dim1 = int(input('¿Cuál es la dimensión de la retícula?: '))
if dim1 == 1 :
command_line = 'python3.7 -m manim Laticed.py SpanLattice1D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if dim1 == 2 :
do1 = str(input('''
¿Qué deseas hacer?
[a] Animar la retícula por el conjunto generador.
[b] Dibujar la retícula directamente.
[c] Dibujar la reítcula y su Dominio Fundamental.
[d] Reducir la retícula por algoritmo de Gauss.
'''))
if do1 == 'a':
command_line = 'python3.7 -m manim Laticed.py SpanLattice2D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if do1 == 'b':
command_line = 'python3.7 -m manim Laticed.py DrawLattice2D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if do1 == 'c':
command_line = 'python3.7 -m manim Laticed.py DrawDomFundLattice2D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if do1 == 'd':
command_line = 'python3.7 -m manim Laticed.py GaussLatticeReduction -pl'
args = shlex.split(command_line)
subprocess.call(args)
else:
print("¡Selecione una opción!")
if dim1 >= 3:
print('¡La dimensión de la retícula no debe ser mayor a la del espacio!')
########################################################################################################################
if command == 'T':
dim2 = int(input('¿Cuál es la dimensión de la retícula?: '))
if dim2 == 1 :
command_line = 'python3.7 -m manim Laticed.py DrawLattice1Din3D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if dim2 == 2 :
do2 = str(input('''
¿Qué deseas hacer?
[a] Dibujar la retícula directamente.
[b] Diujar la reítcula y su Dominio Fundamental.
'''))
if do2 == 'a':
command_line = 'python3.7 -m manim Laticed.py DrawLattice2Din3D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if do2 == 'b':
command_line = 'python3.7 -m manim Laticed.py DrawLatticeDomFund2Din3D -pl'
args = shlex.split(command_line)
subprocess.call(args)
else:
break
if dim2 == 3:
do3 = str(input('''
¿Qué deseas hacer?
[a] Dibujar la retícula directamente.
[b] Diujar la reítcula y su Dominio Fundamental.
[c] Reducir la retícula por algoritmo LLL.
'''))
# This is already! :D
if do3 == 'a':
command_line = 'python3.7 -m manim Laticed.py DrawLattice3D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if do3 == 'b':
command_line = 'python3.7 -m manim Laticed.py DrawDomFund3D -pl'
args = shlex.split(command_line)
subprocess.call(args)
if do3 == 'c':
command_line = 'python3.7 -m manim Laticed.py LLLReduceLattice -pl'
args = shlex.split(command_line)
subprocess.call(args)
else:
break
if dim2 >= 4:
print('¡La dimensión de la retícula no debe ser mayor a la del espacio!')
#############################################################################################################################################
if command == 'C':
print("Se va a dibujar la represenación de una retícula de cuatro dimensiones.")
command_line = 'python3.7 -m manim Laticed.py LLLReduceLattice -pl'
args = shlex.split(command_line)
subprocess.call(args)
#############################################################################################################################################
if command == 's':
break
else:
print("¡Seleccione una de las opciones!")
if __name__ == '__main__':
run()