diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index bd356f0884..72faf99ea1 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -1381,6 +1381,13 @@ def pose_at_angle(self, **kwargs): # Positioning methods def center(self): + """Moves the center of the mobject to the center of the scene. + + Returns + ------- + :class:`.Mobject` + The centered mobject. + """ self.shift(-self.get_center()) return self