mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 02:35:22 +08:00
Beginning L'Hopital's example of eoc7
This commit is contained in:
@ -75,7 +75,8 @@ class Write(ShowCreation):
|
||||
if "run_time" not in kwargs:
|
||||
self.establish_run_time(mobject)
|
||||
if "lag_factor" not in kwargs:
|
||||
self.lag_factor = max(self.run_time - 1, 2)
|
||||
min_lag_factor = min(len(mobject)/2.0, 2)
|
||||
self.lag_factor = max(self.run_time - 1, min_lag_factor)
|
||||
ShowCreation.__init__(self, mobject, **kwargs)
|
||||
|
||||
def establish_run_time(self, mobject):
|
||||
|
Reference in New Issue
Block a user