rotate_in_place changes

This commit is contained in:
Ben Hambrecht
2018-01-22 11:58:04 -08:00
parent ad6a05074b
commit b683b5f628

View File

@ -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.