From d8e4c1d6981e2738a164755e73e0122243d71d17 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Fri, 18 Nov 2022 09:07:33 -0800 Subject: [PATCH] Account for updated rate_func usage in Rotate --- manimlib/animation/rotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/animation/rotation.py b/manimlib/animation/rotation.py index 058d9066..146007db 100644 --- a/manimlib/animation/rotation.py +++ b/manimlib/animation/rotation.py @@ -40,7 +40,7 @@ class Rotating(Animation): for sm1, sm2 in self.get_all_families_zipped(): sm1.set_points(sm2.get_points()) self.mobject.rotate( - alpha * self.angle, + self.rate_func(alpha) * self.angle, axis=self.axis, about_point=self.about_point, about_edge=self.about_edge,