Subversion Repositories gelsvn

Rev

Rev 630 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 630 Rev 632
1
/* ----------------------------------------------------------------------- *
1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
5
 * ----------------------------------------------------------------------- */
6
 
6
 
7
/** @file CGLA.h
7
/** @file CGLA.h
8
 * @brief CGLA main header: contains a number of constants and function decs.
8
 * @brief CGLA main header: contains a number of constants and function decs.
9
 */
9
 */
10
 
10
 
11
#ifndef __CGLA_CGLA_H__
11
#ifndef __CGLA_CGLA_H__
12
#define __CGLA_CGLA_H__
12
#define __CGLA_CGLA_H__
13
 
13
 
14
#if (_MSC_VER >= 1200)
14
#if (_MSC_VER >= 1200)
15
#pragma warning (disable: 4244 4800)
15
#pragma warning (disable: 4244 4800)
16
#endif
16
#endif
17
 
17
 
18
#include <cmath>
18
#include <cmath>
19
#include <cfloat>
19
#include <cfloat>
20
#include <climits>
20
#include <climits>
21
#include <cassert>
21
#include <cassert>
22
#include <algorithm>
22
#include <algorithm>
23
#include <functional>
23
#include <functional>
24
 
24
 
25
#ifndef M_PI
25
#ifndef M_PI
26
#define M_PI 3.14159265358979323846
26
#define M_PI 3.14159265358979323846
27
#define M_PI_2 1.57079632679489661923
27
#define M_PI_2 1.57079632679489661923
28
#endif
28
#endif
29
 
29
 
30
#ifndef DEGREES_TO_RADIANS
30
#ifndef DEGREES_TO_RADIANS
31
#define DEGREES_TO_RADIANS (M_PI / 180.0)
31
#define DEGREES_TO_RADIANS (M_PI / 180.0)
32
#endif
32
#endif
33
 
33
 
34
namespace CGLA 
34
namespace CGLA 
35
{
35
{
36
		inline float cgla_nan() 
36
		inline float cgla_nan() 
37
		{
37
		{
38
				static const float cgla_nan_value = log(-1.0f);
38
				static const float cgla_nan_value = log(-1.0f);
39
				return cgla_nan_value;
39
				return cgla_nan_value;
40
		}
40
		}
41
		
41
		
42
  /** Procedural definition of NAN */  
42
  /** Procedural definition of NAN */  
43
#define CGLA_NAN cgla_nan()
43
#define CGLA_NAN cgla_nan()
44
 
44
 
45
  /** NAN is used for initialization of vectors and matrices
45
  /** NAN is used for initialization of vectors and matrices
46
      in debug mode */
46
      in debug mode */
47
#define CGLA_INIT_VALUE cgla_nan()
47
#define CGLA_INIT_VALUE cgla_nan()
48
 
48
 
49
  /** Numerical constant representing something large.
49
  /** Numerical constant representing something large.
50
      value is a bit arbitrary */
50
      value is a bit arbitrary */
51
  const double BIG=10e+30;
51
  const double BIG=10e+30;
52
 
52
 
53
  /** Numerical constant represents something extremely small.
53
  /** Numerical constant represents something extremely small.
54
      value is a bit arbitrary */
54
      value is a bit arbitrary */
55
  const double MINUTE=10e-30;
55
  const double MINUTE=10e-30;
56
 
56
 
57
  /** Numerical constant represents something very small.
57
  /** Numerical constant represents something very small.
58
      value is a bit arbitrary */
58
      value is a bit arbitrary */
59
  const double TINY=3e-7;
59
  const double TINY=3e-7;
60
	
60
	
61
  /** Numerical constant represents something small.
61
  /** Numerical constant represents something small.
62
      value is a bit arbitrary */
62
      value is a bit arbitrary */
63
  const double SMALL=10e-2;
63
  const double SMALL=10e-2;
64
 
64
 
65
  /** The GEL pseudo-random number generator uses
65
  /** The GEL pseudo-random number generator uses
66
      UINT_MAX as RAND_MAX to avoid mod operations. */
66
      UINT_MAX as RAND_MAX to avoid mod operations. */
67
  const unsigned int GEL_RAND_MAX=UINT_MAX;
67
  const unsigned int GEL_RAND_MAX=UINT_MAX;
68
 
68
 
69
		inline double sqrt3()
69
		inline double sqrt3()
70
		{
70
		{
71
				static const double sqrt3_val = sqrt(3.0);
71
				static const double sqrt3_val = sqrt(3.0);
72
				return sqrt3_val;
72
				return sqrt3_val;
73
		}
73
		}
74
 
74
 
75
#define SQRT3 sqrt3()
75
#define SQRT3 sqrt3()
76
 
76
 
77
  /// Useful enum that represents coordiante axes.
77
  /// Useful enum that represents coordiante axes.
78
  enum Axis {XAXIS=0,YAXIS=1,ZAXIS=2};
78
  enum Axis {XAXIS=0,YAXIS=1,ZAXIS=2};
79
 
79
 
80
  inline bool isnan(double x) { return x != x; }
80
  inline bool isnan(double x) { return x != x; }
81
 
81
 
82
  template<class Scalar>
-
 
83
  Scalar s_min(Scalar a, Scalar b)
-
 
84
  {
-
 
85
    return a<b ? a : b;
-
 
86
  }
-
 
87
 
-
 
88
  template<class Scalar>
-
 
89
  Scalar s_max(Scalar a, Scalar b)
-
 
90
  {
-
 
91
    return a>b ? a : b;
-
 
92
  }
-
 
93
 
-
 
94
  /// Template for a function that squares the argument.
82
  /// Template for a function that squares the argument.
95
  template <class Scalar>
83
  template <class Scalar>
96
  inline Scalar sqr(Scalar x) {///
84
  inline Scalar sqr(Scalar x) {///
97
    return x*x;}
85
    return x*x;}
98
	
86
	
99
  /// Scalar template for a function that returns the cube of the argument.
87
  /// Scalar template for a function that returns the cube of the argument.
100
  template <class Scalar>
88
  template <class Scalar>
101
  inline Scalar qbe(Scalar x) {///
89
  inline Scalar qbe(Scalar x) {///
102
    return x*x*x;}
90
    return x*x*x;}
103
 
91
 
104
  template <class Scalar>
92
  template <class Scalar>
105
  inline bool is_zero(Scalar x)	{return (x > -MINUTE && x < MINUTE);}
93
  inline bool is_zero(Scalar x)	{return (x > -MINUTE && x < MINUTE);}
106
 
94
 
107
  template <class Scalar>
95
  template <class Scalar>
108
  inline bool is_tiny(Scalar x)	{return (x > -TINY && x < TINY);}
96
  inline bool is_tiny(Scalar x)	{return (x > -TINY && x < TINY);}
109
 
97
 
110
  /** What power of 2 ?. if x is the argument, find the largest 
98
  /** What power of 2 ?. if x is the argument, find the largest 
111
      y so that 2^y <= x */
99
      y so that 2^y <= x */
112
  inline int two_to_what_power(unsigned int x) 
100
  inline int two_to_what_power(unsigned int x) 
113
  {
101
  {
114
    if (x<1) 
102
    if (x<1) 
115
      return -1;
103
      return -1;
116
    int i = 0;
104
    int i = 0;
117
    while (x != 1) {x>>=1;i++;}
105
    while (x != 1) {x>>=1;i++;}
118
    return i;
106
    return i;
119
  }
107
  }
120
 
108
 
121
#ifdef __sgi
109
#ifdef __sgi
122
  inline int round(float x) {return int(rint(x));}
110
  inline int round(float x) {return int(rint(x));}
123
#else
111
#else
124
  inline int round(float x) {return int(x+0.5);}
112
  inline int round(float x) {return int(x+0.5);}
125
#endif
113
#endif
126
 
114
 
127
  template<class T>
115
  template<class T>
128
  inline T sign(T x) {return x>=T(0) ? 1 : -1;}
116
  inline T sign(T x) {return x>=T(0) ? 1 : -1;}
129
 
117
 
130
  /// Integer power function with O(log(n)) complexity
118
  /// Integer power function with O(log(n)) complexity
131
  template<class T>
119
  template<class T>
132
  inline T int_pow(T a, unsigned int n)
120
  inline T int_pow(T a, unsigned int n)
133
  {
121
  {
134
    T result = static_cast<T>(1);
122
    T result = static_cast<T>(1);
135
    for(; n > 0; n >>= 1)
123
    for(; n > 0; n >>= 1)
136
    {
124
    {
137
      if(n & 1) result = result*a;
125
      if(n & 1) result = result*a;
138
      a *= a;
126
      a *= a;
139
    }
127
    }
140
    return result;
128
    return result;
141
  }
129
  }
142
  
130
  
143
  /// Function that seeds the GEL pseudo-random number generator
131
  /// Function that seeds the GEL pseudo-random number generator
144
  void gel_srand(unsigned int seed);
132
  void gel_srand(unsigned int seed);
145
 
133
 
146
  /** GEL provides a linear congruential pseudo-random number 
134
  /** GEL provides a linear congruential pseudo-random number 
147
      generator which is optimized for speed. This version allows 
135
      generator which is optimized for speed. This version allows 
148
      an integer argument which is useful for grid-based noise
136
      an integer argument which is useful for grid-based noise
149
      functions. */
137
      functions. */
150
  unsigned int gel_rand(unsigned int k);
138
  unsigned int gel_rand(unsigned int k);
151
 
139
 
152
  /** GEL provides a linear congruential pseudo-random number 
140
  /** GEL provides a linear congruential pseudo-random number 
153
      generator which is optimized for speed. This means
141
      generator which is optimized for speed. This means
154
      that GEL_RAND_MAX==UINT_MAX. */
142
      that GEL_RAND_MAX==UINT_MAX. */
155
  unsigned int gel_rand();
143
  unsigned int gel_rand();
156
 
144
 
157
	/** raw_assign takes a CGLA vector, matrix or whatever has a get() function
145
	/** raw_assign takes a CGLA vector, matrix or whatever has a get() function
158
			as its first argument and a raw pointer to a (presumed scalar) entity 
146
			as its first argument and a raw pointer to a (presumed scalar) entity 
159
			as the second argument. the contents dereferenced by the pointer is 
147
			as the second argument. the contents dereferenced by the pointer is 
160
			copied to the entity given as first argument. */
148
			copied to the entity given as first argument. */
161
  template<class T, class S>
149
  template<class T, class S>
162
  void raw_assign(T& a,  const S* b)
150
  void raw_assign(T& a,  const S* b)
163
  {
151
  {
164
    memcpy(static_cast<void*>(a.get()),static_cast<const void*>(b),sizeof(T));
152
    memcpy(static_cast<void*>(a.get()),static_cast<const void*>(b),sizeof(T));
165
  }
153
  }
166
	
154
	
167
}
155
}
168
 
156
 
169
#endif
157
#endif
170
 
158