mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 21:44:19 +08:00
After running 2to3
This commit is contained in:
@ -70,10 +70,10 @@ class Animation(object):
|
||||
return self.mobject, self.starting_mobject
|
||||
|
||||
def get_all_families_zipped(self):
|
||||
return zip(*map(
|
||||
return list(zip(*list(map(
|
||||
Mobject.family_members_with_points,
|
||||
self.get_all_mobjects()
|
||||
))
|
||||
))))
|
||||
|
||||
def get_sub_alpha(self, alpha, index, num_submobjects):
|
||||
if self.submobject_mode in ["lagged_start", "smoothed_lagged_start"]:
|
||||
|
Reference in New Issue
Block a user