vcglib/vcg/math/base.h

188 lines
7.5 KiB
C
Raw Normal View History

2004-02-13 03:18:57 +01:00
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
2004-02-09 14:32:16 +01:00
/****************************************************************************
History
2004-02-13 03:18:57 +01:00
$Log: not supported by cvs2svn $
Revision 1.13 2004/03/31 10:09:19 cignoni
int64 -> long long for GCC compatibility
Revision 1.12 2004/03/16 00:23:50 tarini
- added VoidType - added "static_assert"
Revision 1.11 2004/03/10 17:37:54 tarini
Added Atan2.
Added common utilities: Max, Min, Swap, Sort(a,b), Sort(a,b,c).
Changed Max values syntax. example: Value<float>::Max
Revision 1.10 2004/03/10 16:54:57 tarini
Added Atan2.
Added common utilities: Max, Min, Swap, Sort(a,b), Sort(a,b,c).
Changed Max values syntax. example: Value<float>::Max
2004-03-08 20:40:48 +01:00
Revision 1.7 2004/03/08 19:38:29 tarini
Added Min e Max. usage: Min<float>::Value (tarini)
2004-03-08 20:40:48 +01:00
2004-03-08 20:38:29 +01:00
Revision 1.6 2004/03/08 14:49:37 ponchio
Aggiunti un po di inline davanti alle funzioni
Revision 1.5 2004/03/04 00:21:00 ponchio
added Acos e Asin
2004-03-04 01:21:00 +01:00
Revision 1.4 2004/03/03 22:51:49 cignoni
changed math from class to template
2004-02-19 16:28:01 +01:00
Revision 1.2 2004/02/13 02:18:57 cignoni
Edited Comments and GPL license
2004-02-09 14:32:16 +01:00
****************************************************************************/
#ifndef __VCGLIB_MATH_BASE
#define __VCGLIB_MATH_BASE
#include <math.h>
#include <assert.h>
2004-03-08 20:38:29 +01:00
#include <limits.h>
2004-02-09 14:32:16 +01:00
/// static_assert: implemented as a macro for "assert", but it is separated for clarity.
/// Should be used for checking integrity constraints that can be tested at complile time,
/// as the ones involving templated constants in templated classes.
#define static_assert assert
2004-02-09 14:32:16 +01:00
#ifdef __BORLANDC__
float sqrtf (float v) {return sqrt(v);}
float fabsf (float v) {return fabs(v);}
#endif
namespace vcg {
2004-03-03 23:51:49 +01:00
namespace math {
2004-02-09 14:32:16 +01:00
2004-03-03 23:51:49 +01:00
template <class SCALAR>
class MagnitudoComparer
2004-02-09 14:32:16 +01:00
{
public:
2004-03-03 23:51:49 +01:00
inline bool operator() ( const SCALAR a, const SCALAR b ) { return fabs(a)>fabs(b); }
2004-02-09 14:32:16 +01:00
};
2004-03-03 23:51:49 +01:00
2004-02-09 14:32:16 +01:00
inline float Sqrt(const float v) { return sqrtf(v); }
inline float Abs(const float v) { return fabsf(v); }
inline float Cos(const float v) { return cosf(v); }
inline float Sin(const float v) { return sinf(v); }
inline float Acos(const float v) { return acosf(v); }
inline float Asin(const float v) { return asinf(v); }
inline float Atan2(const float v0,const float v1) { return atan2f(v0,v1); }
2004-03-03 23:51:49 +01:00
inline double Sqrt(const double v) { return sqrt(v); }
inline double Abs(const double v) { return fabs(v); }
inline double Cos(const double v) { return cos(v); }
inline double Sin(const double v) { return sin(v); }
inline double Acos(const double v) { return acos(v); }
inline double Asin(const double v) { return asin(v); }
inline double Atan2(const double v0,const double v1) { return atan2(v0,v1); }
2004-02-19 16:28:01 +01:00
2004-03-08 20:38:29 +01:00
/// max and min values for each scalar type
2004-03-09 18:55:04 +01:00
/// syntax: Max<float>::Value
2004-03-08 20:38:29 +01:00
template <class SCALAR> class Value {
public: const SCALAR Min; const SCALAR Max;
2004-03-08 20:38:29 +01:00
};
class Value<char > { public: const char Min=-128;
const char Max=+127;};
class Value<unsigned char > { public: const unsigned char Min=0;
const unsigned char Max=255;};
class Value<short > { public: const short Min=(-32767 -1);
const short Max=+32767;};
class Value<unsigned short> { public: const unsigned short Min=0;
const unsigned short Max=65535;};
class Value<int > { public: const int Min=(-2147483647 - 1);
const int Max= +2147483647;};
class Value<unsigned int > { public: const unsigned int Min=0;
const unsigned int Max=4294967295;};
class Value<__int64 > { public: const __int64 Min=(-9223372036854775807i64 - 1);
const __int64 Max= +9223372036854775807i64;};
class Value<long > { public: const long Min=(-2147483647L -1L);
const long Max= +2147483647L;};
class Value<unsigned long > { public: const unsigned long Min=0;
const unsigned long Max=4294967295;};
class Value<float > { public: const float Min=-3.4E38F;
const float Max=+3.4E38F;};
class Value<double > { public: const double Min=-1.7E308;;
const double Max=+1.7E308;};
class Value<long double > { public: const long double Min=-1.7E308; //-1.2E4931 ?
const long double Max=+1.7E308;};//+1.2E4931 ?
template<class T> inline const T & Min(const T &a, const T &b){
if (a<b) return a; else return b;
};
template<class T> inline const T & Max(const T &a, const T &b){
if (a<b) return b; else return a;
};
template<class T> inline void Swap(T &a, T &b){
T tmp=a; a=b; b=tmp;
};
template<class T> inline void Sort(T &a, T &b){
if (a>b) Swap(a,b);
};
template<class T> inline void Sort(T &a, T &b, T &c){
if (a>b) Swap(a,b);
if (b>c) {Swap(b,c); if (a>b) Swap(a,b);}
};
2004-03-08 20:38:29 +01:00
2004-02-09 14:32:16 +01:00
/* Some <math.h> files do not define M_PI... */
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
template <class SCALAR>
2004-03-03 23:51:49 +01:00
inline SCALAR Clamp( const SCALAR & val, const SCALAR& minval, const SCALAR& maxval)
2004-02-09 14:32:16 +01:00
{
if(val < minval) return minval;
if(val > maxval) return maxval;
return val;
}
2004-03-03 23:51:49 +01:00
inline float ToDeg(const float &a){return a*180.0f/float(M_PI);}
inline float ToRad(const float &a){return float(M_PI)*a/180.0f;}
inline double ToDeg(const double &a){return a*180.0/M_PI;}
inline double ToRad(const double &a){return M_PI*a/180.0;}
2004-02-09 14:32:16 +01:00
} // End math namespace
/// a type that stands for "void". Useful for Parameter type of a point.
class VoidType{ public:
VoidType(){};
};
} // End vcg namespace
2004-02-09 14:32:16 +01:00
#endif