Create 3 - 2D Distance.py

This commit is contained in:
Lukas Baumann 2021-02-18 09:27:17 +01:00 committed by GitHub
parent 1f1533fe5b
commit 33f143d1b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
11/c/3 - 2D Distance.py Normal file
View File

@ -0,0 +1,2 @@
def distance2D(x1, y1, x2, y2):
return hypotenuse(x1-x2, y1-y2)