34 const auto PI = 3.14159265359;
35 const auto GOLDEN_RATIO = 1.618034;
36 const auto GOLDEN_RATIO_INVERSE = 1.0 / GOLDEN_RATIO;
37 const auto INCH_TO_POINTS = 72.0;
38 const auto POINT_TO_INCHES = 1.0 / INCH_TO_POINTS;
40 constexpr
auto NaN = std::numeric_limits<double>::quiet_NaN();
41 const auto MISSING_INDICATOR =
"\"?\"";