(self, function: MappingFunction)
| 1457 | return self |
| 1458 | |
| 1459 | def apply_function_to_position(self, function: MappingFunction) -> Self: |
| 1460 | self.move_to(function(self.get_center())) |
| 1461 | return self |
| 1462 | |
| 1463 | def apply_function_to_submobject_positions(self, function: MappingFunction) -> Self: |
| 1464 | for submob in self.submobjects: |
no test coverage detected