示例#1
0
// longitude: returns the value of the runway end longitude field
inline double Runway::longitude(const WhichEnd whichEnd) const
{
   if (whichEnd == LOW_END)
      return dsLongitude( makePointer(RW_LE_LONGITUDE_POS) );
   else
      return dsLongitude( makePointer(RW_HE_LONGITUDE_POS) );
}
示例#2
0
// longitude: returns the value of the longitude field
double Record::longitude() const
{
   return dsLongitude( makePointer(ptbl->longitude) );
}