Beispiel #1
0
 private double Estimate(Hex hex)
 {
     return(GeoUtils.GetDistance(hex.Latitude, hex.Longitude, targetLatitude, targetLongitude, mainBody.Radius));
 }
Beispiel #2
0
 public Tile(int x, int y, Hex hex)
 {
     this.x   = x;
     this.y   = y;
     this.hex = hex;
 }
Beispiel #3
0
 internal Tile(int x, int y, Hex hex)
 {
     this.x   = x;
     this.y   = y;
     this.hex = hex;
 }