dRonin  adbada4
dRonin GCS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Groups Pages
rectlatlng.cpp
Go to the documentation of this file.
1 
13 /*
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * for more details.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, see <http://www.gnu.org/licenses/>
26 */
27 #include "rectlatlng.h"
28 
29 
30 
31 namespace internals {
32 RectLatLng RectLatLng::Empty=RectLatLng();
33 uint qHash(RectLatLng const& rect)
34 {
35  return (int) (((((uint) rect.Lng()) ^ ((((uint) rect.Lat()) << 13) | (((uint) rect.Lat()) >> 0x13))) ^ ((((uint) rect.WidthLng()) << 0x1a) | (((uint) rect.WidthLng()) >> 6))) ^ ((((uint) rect.HeightLat()) << 7) | (((uint) rect.HeightLat()) >> 0x19)));
36 }
37 
38 bool operator==(RectLatLng const& left,RectLatLng const& right)
39 {
40  return ((((left.Lng() == right.Lng()) && (left.Lat() == right.Lat())) && (left.WidthLng() == right.WidthLng())) && (left.HeightLat() == right.HeightLat()));
41 }
42 
43 bool operator!=(RectLatLng const& left,RectLatLng const& right)
44 {
45  return !(left == right);
46 }
47 
48 }
double HeightLat() const
Definition: rectlatlng.h:130
double Lat() const
Definition: rectlatlng.h:111
double WidthLng() const
Definition: rectlatlng.h:121
uint qHash(Rectangle const &rect)
Definition: rectangle.cpp:72
static RectLatLng Empty
Definition: rectlatlng.h:40
bool operator==(LoadTask const &lhs, LoadTask const &rhs)
Definition: loadtask.cpp:31
double Lng() const
Definition: rectlatlng.h:100
bool operator!=(PointLatLng const &left, PointLatLng const &right)
Definition: pointlatlng.cpp:42