Subversion Repositories gelsvn

Rev

Rev 624 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 624 Rev 692
Line 46... Line 46...
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
  const float BIGf = 10e+30f;
52
 
53
 
53
  /** Numerical constant represents something extremely small.
54
  /** Numerical constant represents something extremely small.
54
      value is a bit arbitrary */
55
      value is a bit arbitrary */
55
  const double MINUTE=10e-30;
56
  const double MINUTE = 10e-30;
-
 
57
  const float MINUTEf = 10e-30f;
56
 
58
 
57
  /** Numerical constant represents something very small.
59
  /** Numerical constant represents something very small.
58
      value is a bit arbitrary */
60
      value is a bit arbitrary */
59
  const double TINY=3e-7;
61
  const double TINY = 3e-7;
-
 
62
  const float TINYf = 3e-7f;
60
	
63
 
61
  /** Numerical constant represents something small.
64
  /** Numerical constant represents something small.
62
      value is a bit arbitrary */
65
      value is a bit arbitrary */
63
  const double SMALL=10e-2;
66
  const double SMALL=10e-2;
-
 
67
  const float SMALLf = 10e-2f;
64
 
68
 
65
  /** The GEL pseudo-random number generator uses
69
  /** The GEL pseudo-random number generator uses
66
      UINT_MAX as RAND_MAX to avoid mod operations. */
70
      UINT_MAX as RAND_MAX to avoid mod operations. */
67
  const unsigned int GEL_RAND_MAX=UINT_MAX;
71
  const unsigned int GEL_RAND_MAX=UINT_MAX;
68
 
72