Remove CONFIG vestiges

This commit is contained in:
Grant Sanderson 2022-12-16 10:54:28 -08:00
parent ea4a47aeef
commit a1cbff46b8

View file

@ -68,8 +68,6 @@ class Mobject(object):
('point', np.float32, (3,)), ('point', np.float32, (3,)),
] ]
CONFIG = {} # Need to delete
def __init__( def __init__(
self, self,
color: ManimColor = WHITE, color: ManimColor = WHITE,
@ -96,8 +94,6 @@ class Mobject(object):
self.is_fixed_in_frame = is_fixed_in_frame self.is_fixed_in_frame = is_fixed_in_frame
self.depth_test = depth_test self.depth_test = depth_test
digest_config(self, kwargs) # Need to delete
# Internal state # Internal state
self.submobjects: list[Mobject] = [] self.submobjects: list[Mobject] = []
self.parents: list[Mobject] = [] self.parents: list[Mobject] = []