MCPcopy Create free account
hub / github.com/catabriga/graphwar / distance

Method distance

src/GraphServer/GraphServer.java:671–676  ·  view source on GitHub ↗
(int x1, int y1, int x2, int y2)

Source from the content-addressed store, hash-verified

669 }
670
671 private double distance(int x1, int y1, int x2, int y2)
672 {
673 double distance = Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
674
675 return distance;
676 }
677
678 private boolean testSoldier(Soldier soldier, List<Soldier> soldiers, int[] circles)
679 {

Callers 1

testSoldierMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected