remove whitespace

This commit is contained in:
Dennis Luxen 2014-05-13 12:41:40 +02:00
parent 981941edf4
commit b2adb22b2d
3 changed files with 1 additions and 5 deletions

View File

@ -808,5 +808,4 @@ inline static double GetAngleBetweenThreeFixedPointCoordinates(const CoordinateT
return angle; return angle;
} }
#endif // COMPUTE_ANGLE_H #endif // COMPUTE_ANGLE_H

View File

@ -36,6 +36,7 @@ extern "C" {
#include <boost/filesystem/convenience.hpp> #include <boost/filesystem/convenience.hpp>
#include <luabind/luabind.hpp> #include <luabind/luabind.hpp>
#include <iostream> #include <iostream>
#include <string> #include <string>

View File

@ -30,10 +30,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <cmath> #include <cmath>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
inline double y2lat(const double a) inline double y2lat(const double a)
{ {
return 180. / M_PI * (2. * atan(exp(a * M_PI / 180.)) - M_PI / 2.); return 180. / M_PI * (2. * atan(exp(a * M_PI / 180.)) - M_PI / 2.);