Import upstream version 0.99.2
[fmit.git] / libs / CppAddons / CAMath.h
index 294ce8d..d711a8c 100644 (file)
@@ -33,6 +33,7 @@ namespace Math
        template<typename TypeData> inline TypeData sgn(TypeData a)                     {return (a<0)?-1:1;}
 
        static const double Pi = 2*acos(0);
+    static const double Pi2 = 2*Pi;
        static const float fPi = 2*acos(0);
 
        static const double E = exp(1);