mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
rotate_in_place changes
This commit is contained in:
parent
ad6a05074b
commit
b683b5f628
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue