(self)
| 400 | return Vector2(x / temp, y / temp) |
| 401 | |
| 402 | def normalize(self): |
| 403 | x, y = self.x, self.y |
| 404 | temp = hypot(x, y) |
| 405 | self.x, self.y = x / temp, y / temp |
| 406 | return self |
| 407 | |
| 408 | # Vector Multiplication Operations |
| 409 |
no outgoing calls
no test coverage detected