(self)
| 798 | |
| 799 | |
| 800 | def __str__(self): |
| 801 | return (f"{self.x:.3f}, {self.y:.3f}, {self.z:.3f} | " + |
| 802 | f"{(self.yaw + 180) % 360 - 180:.3f}, {(self.pitch + 180) % 360 - 180 :.3f}, {(self.roll + 180) % 360 - 180:.3f}") |
| 803 | |
| 804 | |
| 805 | def stat(self) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected