From ab817c09624f82a94d7c372149e08044f4b166e4 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Sat, 14 Mar 2020 16:52:33 -0700 Subject: [PATCH] Fix blink --- manimlib/for_3b1b_videos/pi_creature.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/for_3b1b_videos/pi_creature.py b/manimlib/for_3b1b_videos/pi_creature.py index 7c2d63fc..296c7c8d 100644 --- a/manimlib/for_3b1b_videos/pi_creature.py +++ b/manimlib/for_3b1b_videos/pi_creature.py @@ -211,7 +211,7 @@ class PiCreature(SVGMobject): eye_parts = self.eye_parts eye_bottom_y = eye_parts.get_y(DOWN) - for eye_part in eye_parts: + for eye_part in eye_parts.family_members_with_points(): eye_part.points[:, 1] = eye_bottom_y return self