From f8ee1ac4f936309013a2a41a85fa227f62c5bc10 Mon Sep 17 00:00:00 2001 From: loodydo <30909547+loodydo@users.noreply.github.com> Date: Sat, 2 Jul 2022 06:05:10 -0600 Subject: [PATCH] Update GeoCoord.cpp (#1540) Adding clarification to comments on GeoCoord::bearing function. Co-authored-by: Ben Meadors --- src/gps/GeoCoord.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gps/GeoCoord.cpp b/src/gps/GeoCoord.cpp index 69c36ccb..13c24b70 100644 --- a/src/gps/GeoCoord.cpp +++ b/src/gps/GeoCoord.cpp @@ -379,7 +379,7 @@ float GeoCoord::latLongToMeter(double lat_a, double lng_a, double lat_b, double * Latitude of the second point * @param lon2 * Longitude of the second point - * @return Bearing between the two points in radians. A value of 0 means due + * @return Bearing from point 1 to point 2 in radians. A value of 0 means due * north. */ float GeoCoord::bearing(double lat1, double lon1, double lat2, double lon2)