1#ifndef LIBSBX_MATH_CONSTANTS_HPP_
2#define LIBSBX_MATH_CONSTANTS_HPP_
9#include <libsbx/math/concepts.hpp>
13template<
floating_po
int Type>
14inline constexpr auto epsilon_v = std::numeric_limits<Type>::epsilon();
16inline constexpr auto epsilonf = epsilon_v<std::float_t>;
18inline constexpr auto epsilond = epsilon_v<std::double_t>;