EulerAngles 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2015 Tal Hadad <tal_hd@hotmail.com>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla
  7. // Public License v. 2.0. If a copy of the MPL was not distributed
  8. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #ifndef EIGEN_EULERANGLES_MODULE_H
  10. #define EIGEN_EULERANGLES_MODULE_H
  11. #include "Eigen/Core"
  12. #include "Eigen/Geometry"
  13. #include "Eigen/src/Core/util/DisableStupidWarnings.h"
  14. namespace Eigen {
  15. /**
  16. * \defgroup EulerAngles_Module EulerAngles module
  17. * \brief This module provides generic euler angles rotation.
  18. *
  19. * Euler angles are a way to represent 3D rotation.
  20. *
  21. * In order to use this module in your code, include this header:
  22. * \code
  23. * #include <unsupported/Eigen/EulerAngles>
  24. * \endcode
  25. *
  26. * See \ref EulerAngles for more information.
  27. *
  28. */
  29. }
  30. #include "src/EulerAngles/EulerSystem.h"
  31. #include "src/EulerAngles/EulerAngles.h"
  32. #include "Eigen/src/Core/util/ReenableStupidWarnings.h"
  33. #endif // EIGEN_EULERANGLES_MODULE_H