Get rid of lag_factor

This commit is contained in:
Grant Sanderson
2019-02-08 18:42:40 -08:00
parent f1b847deff
commit 707a2f6f63
22 changed files with 39 additions and 54 deletions

View File

@ -899,7 +899,7 @@ class IntroduceBase10(Scene):
""")
digits.next_to(self.title, DOWN, buff = LARGE_BUFF)
digits.shift(2*RIGHT)
self.play(Write(digits, lag_factor = 5))
self.play(Write(digits))
self.wait()
class RhythmOfDecimalCounting(CountingScene):
@ -1181,7 +1181,6 @@ class BinaryCountingAtEveryScale(Scene):
VGroup(*reversed(list(curr_bits))),
VGroup(*reversed(list(bit_mobs[2**(self.num_bits-1)]))),
lag_ratio = 0.5,
lag_factor = self.num_bits
))
self.wait()
self.play(
@ -2970,7 +2969,6 @@ class IntroduceGraphStructure(SierpinskiGraphScene):
self.nodes,
run_time = 3,
lag_ratio = 0.5,
lag_factor = 7,
))
vect = LEFT
for index in 3, 21, 8, 17, 10, 13: