all repos — WarBot2020 @ 1f6c26030c76a2282f944ad0830db09f3a67185c

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

Delete Centroide.java
Bi-Rabittoh andronacomarco@gmail.com
Wed, 03 Apr 2019 11:10:53 +0200
commit

1f6c26030c76a2282f944ad0830db09f3a67185c

parent

eaa213108510af34bac946aa2f2aacc00940d77c

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

jump to
D 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; - -/** - * - * @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)); - } -}