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