Home
last modified time | relevance | path

Searched refs:usrDistance (Results 1 – 1 of 1) sorted by relevance

/dports/astro/opencpn/OpenCPN-5.2.4/src/
H A Dnavutil.cpp4419 double usrDistance = toUsrDistance( distance, unit ); in FormatDistanceAdaptive() local
4420 …if( usrDistance < 0.1 && ( unit == DISTANCE_KM || unit == DISTANCE_MI || unit == DISTANCE_NMI ) )… in FormatDistanceAdaptive()
4422 usrDistance = toUsrDistance( distance, unit ); in FormatDistanceAdaptive()
4425 if( usrDistance < 5.0 ) { in FormatDistanceAdaptive()
4427 } else if( usrDistance < 100.0 ) { in FormatDistanceAdaptive()
4429 } else if( usrDistance < 1000.0 ) { in FormatDistanceAdaptive()
4434 result << wxString::Format(format, usrDistance ) << getUsrDistanceUnit( unit ); in FormatDistanceAdaptive()