Meant to generalize ``get_x``, ``get_y`` and ``get_z``
(self, dim: int, direction: Vector3DLike = ORIGIN)
| 2304 | ) - self.reduce_across_dimension(min, dim) |
| 2305 | |
| 2306 | def get_coord(self, dim: int, direction: Vector3DLike = ORIGIN) -> float: |
| 2307 | """Meant to generalize ``get_x``, ``get_y`` and ``get_z``""" |
| 2308 | return self.get_extremum_along_dim(dim=dim, key=direction[dim]) |
| 2309 | |
| 2310 | def get_x(self, direction: Vector3DLike = ORIGIN) -> float: |
| 2311 | """Returns x Point3D of the center of the :class:`~.Mobject` as ``float``""" |
no test coverage detected