MythTV master
goom_tools.h
Go to the documentation of this file.
1#ifndef GOOMTOOLS_H
2#define GOOMTOOLS_H
3
4#include <cinttypes>
5#include <cstddef>
6#include <cstdlib>
7#include <numbers>
8
9#if !defined( M_PI )
10static constexpr double M_PI { std::numbers::pi };
11#endif
12static constexpr float M_PI_F { std::numbers::pi_v<float> };
13
14#endif // GOOMTOOLS_H
static constexpr float M_PI_F
Definition: goom_tools.h:12
static constexpr double M_PI
Definition: goom_tools.h:10