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