mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 05:24:22 +08:00
fix for copy bug (again)
This commit is contained in:
@ -115,7 +115,7 @@ class Mobject(Container):
|
|||||||
def copy(self):
|
def copy(self):
|
||||||
# TODO, either justify reason for shallow copy, or
|
# TODO, either justify reason for shallow copy, or
|
||||||
# remove this redundancy everywhere
|
# remove this redundancy everywhere
|
||||||
return self.deepcopy()
|
#return self.deepcopy()
|
||||||
|
|
||||||
copy_mobject = copy.copy(self)
|
copy_mobject = copy.copy(self)
|
||||||
copy_mobject.points = np.array(self.points)
|
copy_mobject.points = np.array(self.points)
|
||||||
|
Reference in New Issue
Block a user