reduce warnings

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2539 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c56389f882ff0578265b7815c2c103883de889a6
Former-commit-id: e519e7b9fee9b628a2c3fccec36cc6e372fe1e46
This commit is contained in:
wdbee 2010-06-22 12:10:53 +00:00
parent c2376e7f29
commit cac8ebb73a

View file

@ -85,6 +85,7 @@ const tdble G = 9.80665f; /**< m/s/s */
#define RAD2DEG(x) ((x)*(180.0/PI)) /**< Radian to degree conversion */
#define FLOAT_RAD2DEG(x) ((x)*(float)(180.0/PI))/**< Radian to degree conversion */
#define DEG2RAD(x) ((x)*(PI/180.0)) /**< Degree to radian conversion */
#define FLOAT_DEG2RAD(x) ((x)*(float)(PI/180.0))/**< Degree to radian conversion */
#define FEET2M(x) ((x)*0.304801) /**< Feet to meter conversion */
#define SIGN(x) ((x) < 0 ? -1.0 : 1.0) /**< Sign of the expression */