/lib/matrix/helper_functions.hpp

https://bitbucket.org/claudio_ortega/fcnd-controls-cpp · C++ Header · 41 lines · 28 code · 11 blank · 2 comment · 6 complexity · 039f6c32a8b3acbe593288152fc18d28 MD5 · raw file

  1. #pragma once
  2. #include "math.hpp"
  3. // grody hack - this should go once C++11 is supported
  4. // on all platforms.
  5. #if defined (__PX4_NUTTX) || defined (__PX4_QURT)
  6. #include <math.h>
  7. #else
  8. #include <cmath>
  9. #endif
  10. namespace matrix
  11. {
  12. template<typename Type>
  13. Type wrap_pi(Type x)
  14. {
  15. #if defined (__PX4_NUTTX) || defined (__PX4_QURT)
  16. if (!isfinite(x)) {
  17. #else
  18. if (!std::isfinite(x)) {
  19. #endif
  20. return x;
  21. }
  22. while (x >= (Type)M_PI) {
  23. x -= (Type)(2.0 * M_PI);
  24. }
  25. while (x < (Type)(-M_PI)) {
  26. x += (Type)(2.0 * M_PI);
  27. }
  28. return x;
  29. }
  30. };