Exemple #1
0
 internal DMS()
 {
     this._degrees      = 0;
     this._minutes      = 0;
     this._seconds      = 0;
     this._quadrasphere = Quadrasphere.North;
 }
Exemple #2
0
 internal DMS()
 {
     this._degrees = 0;
     this._minutes = 0;
     this._seconds = 0;
     this._quadrasphere = Quadrasphere.North;
 }
Exemple #3
0
 public DMS(int Degrees, int Minutes, int Seconds, Quadrasphere Quadrasphere)
 {
     this._degrees      = Degrees;
     this._minutes      = Minutes;
     this._seconds      = Seconds;
     this._quadrasphere = Quadrasphere;
 }
Exemple #4
0
 public DMS(int Degrees, int Minutes, int Seconds, Quadrasphere Quadrasphere)
 {
     this._degrees = Degrees;
     this._minutes = Minutes;
     this._seconds = Seconds;
     this._quadrasphere = Quadrasphere;
 }