From da94de356174a6f0b0366769378e37a59b031579 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Thu, 1 Nov 2018 09:47:14 -0400 Subject: [PATCH] Fix longitude/latitude specification for size of GeodeticPatch --- modules/globebrowsing/src/geodeticpatch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/globebrowsing/src/geodeticpatch.cpp b/modules/globebrowsing/src/geodeticpatch.cpp index 80a66ceed9..7de2ca549e 100644 --- a/modules/globebrowsing/src/geodeticpatch.cpp +++ b/modules/globebrowsing/src/geodeticpatch.cpp @@ -99,8 +99,8 @@ const Geodetic2& GeodeticPatch::halfSize() const { Geodetic2 GeodeticPatch::size() const { return { - _halfSize.lon * 2.0, - _halfSize.lat * 2.0 + _halfSize.lat * 2.0, + _halfSize.lon * 2.0 }; }