Set x value of the center of the :class:`~.Mobject` (``int`` or ``float``)
(self, x: float, direction: Vector3DLike = ORIGIN)
| 1860 | return self |
| 1861 | |
| 1862 | def set_x(self, x: float, direction: Vector3DLike = ORIGIN) -> Self: |
| 1863 | """Set x value of the center of the :class:`~.Mobject` (``int`` or ``float``)""" |
| 1864 | return self.set_coord(x, 0, direction) |
| 1865 | |
| 1866 | def set_y(self, y: float, direction: Vector3DLike = ORIGIN) -> Self: |
| 1867 | """Set y value of the center of the :class:`~.Mobject` (``int`` or ``float``)""" |