1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00

pi constant

This commit is contained in:
Antonin Portelli 2014-04-03 10:02:28 +02:00
parent 1d9769adbc
commit 166ed550ae

View File

@ -93,10 +93,13 @@ DECL_STD_FUNC(fmin)
// Absolute value
DECL_STD_FUNC(fabs)
// Add standard math functions to a table for the math compiler
namespace STDMATH_NAMESPACE
{
// Add standard math functions to a table for the math compiler
void addStdMathFunc(FunctionTable &fTable);
// Constants
const double pi = 3.1415926535897932384626433832795028841970;
}
END_NAMESPACE