#49 : Code cleanup

This commit is contained in:
Vadim
2021-08-06 23:48:44 +03:00
parent 5a810bad49
commit e86d1d5e45

View File

@@ -3,4 +3,4 @@ export const getDistance = (p1, p2) => {
const y = p2.y - p1.y;
return Math.sqrt((x * x) + (y * y));
}
}