all repos — WarBot2020 @ ac82759004ccb039ce6892441b5427b496ff88e7

Bootleg version of "WorldWarBot 2020" done in Java and without a map.

Delete Centroide.java
Bi-Rabittoh andronacomarco@gmail.com
Sat, 06 Apr 2019 02:46:07 +0200
commit

ac82759004ccb039ce6892441b5427b496ff88e7

parent

18ce8cf3a05f92a571e69680c7954c3ccc17c324

1 files changed, 0 insertions(+), 33 deletions(-)

jump to
D siciliaguerrabot2020/Guerra/Centroide.java

@@ -1,33 +0,0 @@

-/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package siciliaguerrabot2020.Guerra; - -/** - * - * @author Bi-Rabittoh - */ -public class Centroide { - public double x; - public double y; - - public Centroide(double x, double y) { - this.x = x; - this.y = y; - } - - @Override - public String toString() { - return "Centroide{" + "x=" + x + ", y=" + y + '}'; - } - - public Centroide puntoMedio(Centroide target){ - return new Centroide((this.x + target.x) / 2, (this.y + target.y) / 2); - } - - public double distanza(Centroide target){ - return Math.sqrt(Math.pow(this.x - target.x, 2) + Math.pow(this.y - target.y, 2)); - } -}