2001-10-04 23:12:57 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2001 Robert Osfield
|
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2001-10-04 05:44:07 +08:00
|
|
|
#ifndef __OSG_MATH
|
|
|
|
#define __OSG_MATH
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2002-03-26 03:04:30 +08:00
|
|
|
#if defined(WIN32) || defined (macintosh)|| defined (sun) || defined (__DARWIN_OSX__)
|
2002-03-15 00:01:21 +08:00
|
|
|
|
2001-11-06 18:34:51 +08:00
|
|
|
#include <float.h>
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-01-30 23:27:45 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
// PJA MAC OSX
|
|
|
|
// This appears to be the simplest way to get these defined under MACOSX
|
|
|
|
// where they arent in math.h
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef acosf
|
|
|
|
#define acosf (float)acos
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef asinf
|
|
|
|
#define asinf (float)asin
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef cosf
|
|
|
|
#define cosf (float)cos
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef sinf
|
|
|
|
#define sinf (float)sin
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef logf
|
|
|
|
#define logf (float)log
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef floorf
|
|
|
|
#define floorf (float)floor
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef powf
|
|
|
|
#define powf (float)pow
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef sqrtf
|
|
|
|
#define sqrtf (float)sqrt
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#ifndef fabsf
|
|
|
|
#define fabsf (float)fabs
|
|
|
|
#endif
|
2001-11-06 18:34:51 +08:00
|
|
|
|
2002-04-20 00:22:25 +08:00
|
|
|
#ifndef isnanf
|
|
|
|
#define isnanf (float)isnan
|
|
|
|
#endif
|
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
#endif
|
2001-11-06 18:34:51 +08:00
|
|
|
|
2001-10-04 05:44:07 +08:00
|
|
|
namespace osg {
|
|
|
|
|
2002-01-30 23:27:45 +08:00
|
|
|
// define the stand trig values
|
2002-02-09 18:24:39 +08:00
|
|
|
#ifdef PI
|
|
|
|
#undef PI
|
|
|
|
#undef PI_2
|
|
|
|
#undef PI_4
|
|
|
|
#endif
|
2002-01-30 23:27:45 +08:00
|
|
|
const double PI = 3.14159265358979323846;
|
|
|
|
const double PI_2 = 1.57079632679489661923;
|
|
|
|
const double PI_4 = 0.78539816339744830962;
|
|
|
|
|
|
|
|
|
|
|
|
inline double inDegrees(double angle) { return angle*PI/180.0; }
|
2001-12-13 04:29:10 +08:00
|
|
|
inline double inRadians(double angle) { return angle; }
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-01-30 23:27:45 +08:00
|
|
|
inline double DegreesToRadians(double angle) { return angle*PI/180.0; }
|
|
|
|
inline double RadiansToDegrees(double angle) { return angle*180.0/PI; }
|
2001-10-07 04:29:42 +08:00
|
|
|
|
2002-02-23 01:12:10 +08:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__) && !defined(__MWERKS__)
|
2002-01-18 22:12:36 +08:00
|
|
|
inline bool isNaN(float v) { return _isnan(v)!=0; }
|
|
|
|
inline bool isNaN(double v) { return _isnan(v)!=0; }
|
2001-11-06 18:34:51 +08:00
|
|
|
#else
|
2002-01-18 22:12:36 +08:00
|
|
|
inline bool isNaN(float v) { return isnan(v); }
|
|
|
|
inline bool isNaN(double v) { return isnan(v); }
|
2001-11-06 18:34:51 +08:00
|
|
|
#endif
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-10-04 05:44:07 +08:00
|
|
|
|
|
|
|
#endif // __OSG_MATH
|