Update vectorized_mobject.py

This commit is contained in:
Bill Xi 2021-10-31 18:42:14 +08:00 committed by GitHub
parent b285ca7c22
commit 5d942d5ac0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,10 +75,6 @@ class VMobject(Mobject):
self.triangulation = np.zeros(0, dtype='i4')
super().__init__(**kwargs)
self.refresh_unit_normal()
def __add__(self, other : 'VMobject') -> 'VGroup':
assert(isinstance(other, VMobject))
return VGroup(self, other)
def get_group_class(self):
return VGroup