fixed CMath::PI2()

This commit is contained in:
Mathew Sutcliffe
2013-04-29 23:28:41 +01:00
parent 3c2b894c93
commit 715e6e8340

View File

@@ -86,7 +86,7 @@ public:
*/
static const double &PI2()
{
static double pi2 = PI();
static double pi2 = 2.0 * PI();
return pi2;
}