Program Listing for File MathConstants.hpp

Return to documentation for file (src/LouLib/Math/MathConstants.hpp)

#ifndef LOULIB_MATHCONSTANTS_HPP
#define LOULIB_MATHCONSTANTS_HPP

namespace LouLib{
    namespace Math{
        constexpr double EPS =          1E-9;
        constexpr double PI =           3.14159265358979323846;
        constexpr double E =            2.7182818284590452354;
        constexpr double SQRT2 =        1.4142135623730950488;
    }
}

#endif //LOULIB_MATHCONSTANTS_HPP