1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
| from manim import *
class AlignedEdgeExample(Scene):
def construct(self):
unsat_graph_text = Text('Groundwater Flow Analysis Solving Steps', font_size=46, color=GREEN_A).to_edge(UP)
hp_text = Text('1. Known Pressure Head', font_size=36)
sp_text = Text('2. Find specific water capacity', font_size=36)
th_text = Text('3. Find the volumetric moisture content', font_size=36)
kr_text = Text('4. Find the specific permeability', font_size=36)
solve_text = Text('5. Solve for pressure head from basic equations', font_size=36)
text_grp = Group(unsat_graph_text,hp_text,sp_text,th_text,kr_text,solve_text)
text_grp.arrange(DOWN, center=False, aligned_edge=LEFT, buff=0.4)
self.add(text_grp)
|