コード例 #1
0
ファイル: Spherical.cs プロジェクト: hamlertools/OTWB
        public bool Equals(ICoordinate c)
        {
            Spherical cc = c.toSpherical;

            return(cc.Radius == Radius &&
                   cc.Longitude == Longitude &&
                   cc.CoLattitude == CoLattitude);
        }
コード例 #2
0
ファイル: Spherical.cs プロジェクト: hamlertools/OTWB
 public Spherical(Spherical s)
     : this(s.Radius, s.CoLattitude, s.Longitude)
 {
 }
コード例 #3
0
ファイル: Spherical.cs プロジェクト: dolkensp/OTWB
		public Spherical(Spherical s)
			: this (s.Radius,s.CoLattitude,s.Longitude){}