CConstants.h
Go to the documentation of this file.
1 //==============================================================================
2 /*
3  Software License Agreement (BSD License)
4  Copyright (c) 2003-2016, CHAI3D.
5  (www.chai3d.org)
6 
7  All rights reserved.
8 
9  Redistribution and use in source and binary forms, with or without
10  modification, are permitted provided that the following conditions
11  are met:
12 
13  * Redistributions of source code must retain the above copyright
14  notice, this list of conditions and the following disclaimer.
15 
16  * Redistributions in binary form must reproduce the above
17  copyright notice, this list of conditions and the following
18  disclaimer in the documentation and/or other materials provided
19  with the distribution.
20 
21  * Neither the name of CHAI3D nor the names of its contributors may
22  be used to endorse or promote products derived from this software
23  without specific prior written permission.
24 
25  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  POSSIBILITY OF SUCH DAMAGE.
37 
38  \author <http://www.chai3d.org>
39  \author Francois Conti
40  \version 3.2.0 $Rev: 1869 $
41 */
42 //==============================================================================
43 
44 //------------------------------------------------------------------------------
45 #ifndef CConstantsH
46 #define CConstantsH
47 //------------------------------------------------------------------------------
48 #include "system/CGlobals.h"
49 //------------------------------------------------------------------------------
50 #ifdef C_USE_EIGEN
51 #include "Eigen/Eigen"
52 #endif
53 //------------------------------------------------------------------------------
54 
55 //==============================================================================
63 //==============================================================================
64 
65 //------------------------------------------------------------------------------
66 namespace chai3d {
67 //------------------------------------------------------------------------------
68 
69 //------------------------------------------------------------------------------
70 // ERROR CONSTANTS
71 //------------------------------------------------------------------------------
72 
74 const bool C_ERROR = false;
75 
77 const bool C_SUCCESS = true;
78 
79 
80 //------------------------------------------------------------------------------
81 // MATH CONSTANTS
82 //------------------------------------------------------------------------------
83 
85 const double C_TWO_PI = 6.28318530717958647692;
86 
88 const double C_PI = 3.14159265358979323846;
89 
91 const double C_PI_DIV_2 = 1.57079632679489661923;
92 
94 const double C_DEG2RAD = 0.01745329252;
95 
97 const double C_RAD2DEG = 57.2957795131;
98 
100 const double C_TINY = 1e-49;
101 
103 const double C_SMALL = 0.000000001;
104 
106 #ifdef DBL_MAX
107 const double C_LARGE = DBL_MAX;
108 #else
109 const double C_LARGE = 1e+49;
110 #endif
111 
113 #ifdef FLOAT_MAX
114 const double C_LARGE_FLOAT = FLOAT_MAX;
115 #else
116 const double C_LARGE_FLOAT = 1e37;
117 #endif
118 
119 //------------------------------------------------------------------------------
120 } // namespace chai3d
121 //------------------------------------------------------------------------------
122 
123 //------------------------------------------------------------------------------
124 #endif
125 //------------------------------------------------------------------------------
const double C_SMALL
Small value near zero.
Definition: CConstants.h:103
const double C_RAD2DEG
Conversion from radians to degrees.
Definition: CConstants.h:97
const double C_PI_DIV_2
PI constant divided by two.
Definition: CConstants.h:91
const double C_TWO_PI
Two PI constant.
Definition: CConstants.h:85
const bool C_SUCCESS
Function returns successfully.
Definition: CConstants.h:77
const double C_LARGE_FLOAT
Biggest value for a float.
Definition: CConstants.h:116
const double C_DEG2RAD
Conversion from degrees to radians.
Definition: CConstants.h:94
const double C_PI
PI constant.
Definition: CConstants.h:88
Implements option settings for CHAI3D.
const bool C_ERROR
Function returns with an error.
Definition: CConstants.h:74
const double C_TINY
Smallest value near zero for a double.
Definition: CConstants.h:100
const double C_LARGE
Biggest value for a double.
Definition: CConstants.h:109
Definition: CAudioBuffer.cpp:56