mirror of
https://github.com/3b1b/manim.git
synced 2025-07-29 13:03:31 +08:00
rotate_in_place changes
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user