Pitch the turtle around its local Y axis.
(self, angle)
| 53 | logger.debug(f"yaw {angle}deg") |
| 54 | |
| 55 | def pitch(self, angle): |
| 56 | """Pitch the turtle around its local Y axis.""" |
| 57 | self.rotation = self.rotation * Rotation.from_euler("Y", [angle], degrees=True) |
| 58 | logger.debug(f"pitch {angle}deg") |
| 59 | |
| 60 | def roll(self, angle): |
| 61 | """Roll the turtle around its local X axis. |
no outgoing calls