From 5d942d5ac0202caac54e657c8f24b1e838f34114 Mon Sep 17 00:00:00 2001 From: Bill Xi <86190295+BillyLikesHacking@users.noreply.github.com> Date: Sun, 31 Oct 2021 18:42:14 +0800 Subject: [PATCH] Update vectorized_mobject.py --- manimlib/mobject/types/vectorized_mobject.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/manimlib/mobject/types/vectorized_mobject.py b/manimlib/mobject/types/vectorized_mobject.py index 02604a7f..d4cf19ca 100644 --- a/manimlib/mobject/types/vectorized_mobject.py +++ b/manimlib/mobject/types/vectorized_mobject.py @@ -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