Fix longitude/latitude specification for size of GeodeticPatch

This commit is contained in:
Alexander Bock
2018-11-01 09:47:14 -04:00
parent c4ff9ec139
commit da94de3561

View File

@@ -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
};
}