summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael Lefevre <lefevre00@yahoo.fr>2011-03-17 16:15:27 +0100
committerThorsten Behrens <tbehrens@novell.com>2011-03-17 16:15:27 +0100
commit1a770c79a29015f6857cf97a20cfbb0958231c1f (patch)
tree675a6e6739fe31e4cc75426683457243dacd6381 /tools
parentc3d5444d84e18fa82235bb9d419861ac5e54f544 (diff)
Remove duplicated constant F_PI and friends
Easy hack, constants already defined in libs-gui/basegfx/inc/basegfx/numeric/ftools.hxx
Diffstat (limited to 'tools')
-rw-r--r--tools/inc/tools/solar.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/inc/tools/solar.h b/tools/inc/tools/solar.h
index 09ad054a8257..d7dd1343b208 100644
--- a/tools/inc/tools/solar.h
+++ b/tools/inc/tools/solar.h
@@ -177,32 +177,6 @@ inline void DoubleToSVBT64( double n, SVBT64 p ) { p[0] = ((BYTE*)&n)[7];
#endif
#endif
-
-/*** standard floating point definitions *******************************/
-
-#ifndef F_PI
-#define F_PI 3.14159265358979323846
-#endif
-#ifndef F_PI2
-#define F_PI2 1.57079632679489661923
-#endif
-#ifndef F_PI4
-#define F_PI4 0.785398163397448309616
-#endif
-#ifndef F_PI180
-#define F_PI180 0.01745329251994
-#endif
-#ifndef F_PI1800
-#define F_PI1800 0.001745329251994
-#endif
-#ifndef F_PI18000
-#define F_PI18000 0.0001745329251994
-#endif
-#ifndef F_2PI
-#define F_2PI 6.28318530717958647694
-#endif
-
-
/*** standard macros *****************************************/
#define SWAPSHORT(x) ((((x) >> 8) & 0x00FF) | (((x) & 0x00FF) << 8))