From b683b5f62848b58fa8c4494f01d119d7ce919358 Mon Sep 17 00:00:00 2001 From: Ben Hambrecht Date: Mon, 22 Jan 2018 11:58:04 -0800 Subject: [PATCH] rotate_in_place changes --- mobject/mobject.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobject/mobject.py b/mobject/mobject.py index 84f113d5..6e135c95 100644 --- a/mobject/mobject.py +++ b/mobject/mobject.py @@ -248,9 +248,9 @@ class Mobject(object): mob.points += about_point return self - def rotate_in_place(self, angle, axis = OUT, axes = []): + def rotate_in_place(self, angle, axis = OUT): # redundant with default behavior of rotate now. - return self.rotate(angle, axis = axis, axes = axes) + return self.rotate(angle, axis = axis) def scale_in_place(self, scale_factor, **kwargs): #Redundant with default behavior of scale now.