libcruft-util/maths.hpp

154 lines
3.2 KiB
C++
Raw Normal View History

2011-05-23 17:18:52 +10:00
/*
* This file is part of libgim.
2011-05-23 17:18:52 +10:00
*
2012-04-11 15:18:26 +10:00
* libgim is free software: you can redistribute it and/or modify it under the
2011-05-23 17:18:52 +10:00
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
2012-04-11 15:18:26 +10:00
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
2011-05-23 17:18:52 +10:00
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
2011-05-23 17:18:52 +10:00
*
* Copyright 2010 Danny Robson <danny@blubinc.net>
*/
#ifndef __MATHS_HPP
#define __MATHS_HPP
#include "annotations.hpp"
#include <type_traits>
2011-05-23 17:18:52 +10:00
template <typename T>
T
pow2 (T value) pure;
2011-05-23 17:18:52 +10:00
2011-08-29 14:31:22 +10:00
template <typename T>
bool
is_pow2 (T value) pure;
2011-05-23 17:18:52 +10:00
template <typename T>
double
rootsquare (T a, T b) pure;
2011-05-23 17:18:52 +10:00
2011-08-29 14:31:22 +10:00
template <typename T>
T
round_up (T value, T align) pure;
template <typename T>
T
round_pow2 (T value) pure;
template <typename T>
bool
is_integer (const T& value) pure;
2011-05-23 17:18:52 +10:00
/**
* Check if two floating point numbers are approximately equal. Returns true
* if the difference is less than a percentage of each individual value.
*
* @e maximum percentage difference for equal values
*/
template <typename T>
bool
almost_equal (const T &a, const T &b)
2011-05-23 17:18:52 +10:00
{ return a == b; }
template <typename Ta, typename Tb>
typename std::enable_if<
std::is_arithmetic<Ta>::value && std::is_arithmetic<Tb>::value,
bool
>::type
almost_equal (const Ta &a, const Tb &b) {
2011-05-23 17:18:52 +10:00
return almost_equal <decltype(a + b)> (static_cast<decltype(a + b)>(a),
static_cast<decltype(a + b)>(b));
}
template <typename Ta, typename Tb>
typename std::enable_if<
!std::is_arithmetic<Ta>::value || !std::is_arithmetic<Tb>::value,
bool
>::type
almost_equal (const Ta &a, const Tb &b)
{ return a == b; }
2011-10-29 23:13:47 +11:00
const double PI = 3.141592653589793238462643;
inline double
to_degreees (double radians) {
return radians * 180 / PI;
}
inline double
to_radians (double degrees) {
return degrees / 180 * PI;
}
2011-05-23 17:18:52 +10:00
template <>
bool
almost_equal (const float &a, const float &b);
2011-05-23 17:18:52 +10:00
template <>
bool
almost_equal (const double &a, const double &b);
2011-05-23 17:18:52 +10:00
// Useful for explictly ignore equality warnings
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wfloat-equal"
template <typename T>
bool
2011-10-23 20:14:35 +11:00
exactly_equal (const T &a, const T &b)
{ return a == b; }
#pragma GCC diagnostic pop
2011-05-23 17:18:52 +10:00
/// Variadic minimum
template <typename T>
const T&
min (const T &a)
{ return a; }
2011-05-23 17:18:52 +10:00
template <typename T, typename ...Args>
const T&
min (const T &a , const T &b , const Args &...args )
{ return min ( b < a ? b : a, args...); }
/// Variadic maximum
template <typename T>
const T&
max (const T &a)
{ return a; }
2011-05-23 17:18:52 +10:00
template <typename T, typename ...Args>
const T&
max (const T &a , const T &b , const Args &...args )
{ return max ( b > a ? b : a, args...); }
2012-04-13 11:23:55 +10:00
inline double sign (double x) { return x >= 0 ? 1.0 : -1.0; }
inline float sign (float x) { return x >= 0 ? 1.0 : -1.0; }
inline int sign (int x) { return x >= 0 ? 1 : -1 ; }
2011-05-23 17:18:52 +10:00
#endif // __MATHS_HPP