コード例 #1
0
ファイル: GeoPoint.cs プロジェクト: StevePunak/KanoopCommon
 public bool IsEastOfOrEqualTo(GeoPoint other, int precision = EarthGeo.GeoPrecision)
 {
     return(IsEastOf(other) || Longitude.EqualsAtPrecision(other.Longitude, precision));
 }