Program Listing for File bitrl_consts.h¶
↰ Return to documentation for file (src/bitrl/bitrl_consts.h)
#ifndef GYMFCPP_CONSTS_H
#define GYMFCPP_CONSTS_H
#include "bitrl/bitrl_types.h"
#include <string>
#include <numbers>
namespace bitrl {
namespace consts{
inline const uint_t INVALID_ID = static_cast<uint_t>(-1);
inline const std::string INVALID_STR = std::string("INVALID");
inline const real_t TOLERANCE = 1.0e-8;
namespace maths{
inline const real_t PI = std::numbers::pi;
inline const real_t G = 9.82;
}
}
}
#endif // GYMFCPP_CONSTS_H