Created
February 15, 2016 21:16
-
-
Save moon-goon/b7fb6416346971b0cf32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
def destroy(x1,y1,r1,x2,y2,r2): | |
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2) | |
if(dist - (r1+r2) < 0): | |
print("True") | |
else: | |
print("False") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment