Skip to content

Commit

Permalink
fixed one sound and changed tau
Browse files Browse the repository at this point in the history
  • Loading branch information
martawleklinska committed Jul 16, 2024
1 parent 2bc1d6e commit 26cb266
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
Binary file modified data/sound/episode3/slide4-4.mp3
Binary file not shown.
7 changes: 3 additions & 4 deletions zkmarek/video/slides/episode3/ceremony.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ def __init__(self):
def construct(self):
self.title_label = Text("Ceremony", font=PRIMARY_FONT, color=PRIMARY_COLOR)
self.group = ImageMobject("zkmarek/video/slides/episode3/group.png")
self.tau_letter = MathTex(r"\tau", color = SECONDARY_COLOR, font_size=70)
self.person_tau0 = self.tau_letter.copy().next_to(self.group, DOWN, buff=0.01)
self.person_tau1 = self.tau_letter.copy().next_to(self.group, LEFT, buff=0.1)
self.person_tau2 = self.tau_letter.copy().next_to(self.group, RIGHT, buff=0.1)
self.person_tau0 = MathTex(r"\tau_0", color = SECONDARY_COLOR, font_size=70).next_to(self.group, DOWN, buff=0.01)
self.person_tau1 = MathTex(r"\tau_1", color = SECONDARY_COLOR, font_size=70).next_to(self.group, LEFT, buff=0.1)
self.person_tau2 = MathTex(r"\tau_2", color = SECONDARY_COLOR, font_size=70).next_to(self.group, RIGHT, buff=0.1)
self.vector_0 = TexArray(PARTICIPANT_1)
self.vector_1 = TexArray(PARTICIPANT_2)
self.vector_k = TexArray(PARTICIPANT_N, 3)
Expand Down
4 changes: 2 additions & 2 deletions zkmarek/video/slides/episode3/introduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def animate_out(self, scene):

def animate_tree(self, scene):
tree = VerkleTree().scale(0.8).shift(UP*1.5)
scene.play(AddTextLetterByLetter(self.plonk), run_time=2)
scene.play(AddTextLetterByLetter(self.plonk), run_time=1.5)
scene.play(FadeOut(self.plonk))
scene.play(Create(tree))
scene.wait(1)
scene.wait(0.7)
scene.play(FadeOut(tree))
3 changes: 1 addition & 2 deletions zkmarek/video/slides/episode3/trusted_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,9 @@ def animate_in(self, scene):
scene.play(Write(self.vector_g2))
self.new_subsection(scene, "there are ec points", "data/sound/episode3/slide4-4.mp3")

scene.play(Write(self.strike))
self.vector_g1.animate_transform_matching_shapes(scene, SETUP_G1_3)
self.vector_g2.animate_transform_matching_shapes(scene, SETUP_G2_2)

scene.play(Write(self.strike))
scene.wait(1.5)


0 comments on commit 26cb266

Please sign in to comment.