(self, sinb: float, cosb: float)
| 105 | return self.rotate(sinb, cosb) |
| 106 | |
| 107 | def rotate(self, sinb: float, cosb: float) -> Point: |
| 108 | x, y = self.x, self.y |
| 109 | return Point(x * cosb - y * sinb, x * sinb + y * cosb) |
| 110 | |
| 111 | def flip(self) -> Point: |
| 112 | return Point(-self.x, self.y) |
no test coverage detected