/* ********************************************************************* * Caldron Engine °ø¿ëÇì´õ¿ë ½ÇÁ¦ »ó¼ö Á¤ÀÇÆÄÀÏ * ÆÄÀÏ : Caldron.h * ±â´É : Caldron namespaceÀÇ »ó¼öµéÀ» Á¤ÀÇ * ÀÛ¼ºÀÏ : 2003.10.23 * ÀÛ¼ºÀÚ : yundi ( 2003.10.23) * ¼öÁ¤ÀÚ : ********************************************************************** */ namespace Caldron { const float FLOAT_RAD = 0.0174532925f; const float FLOAT_PI = 3.14159265358979323846f; const float FLOAT_2PI = 6.28318530717958647692f; extern const float MIN_EPSILON = 1.0e-4f; extern const float MAX_EPSILON = 1.0e+10f; const int MAX_STRINGSIZE = 40; // const int MAX_RELOADING = 3; }