(x, y, center)
| 277 | } |
| 278 | |
| 279 | function convertCoordinateOrigin(x, y, center) { |
| 280 | return { |
| 281 | x: center.x + x, |
| 282 | y: center.y - y |
| 283 | }; |
| 284 | } |
| 285 | |
| 286 | function avoidCollision(obj, target) { |
| 287 | if (target) { |
no outgoing calls
no test coverage detected