utility.cpp 623 B

12345678910111213141516171819202122232425
  1. /** \file itasc/kdl/utilities/utility.cpp
  2. * \ingroup itasc
  3. */
  4. /** @file utility.cpp
  5. * @author Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
  6. * @version
  7. * ORO_Geometry V0.2
  8. *
  9. * @par history
  10. * - changed layout of the comments to accomodate doxygen
  11. */
  12. #include "utility.h"
  13. namespace KDL {
  14. int STREAMBUFFERSIZE=10000;
  15. int MAXLENFILENAME = 255;
  16. const double PI= 3.1415926535897932384626433832795;
  17. const double deg2rad = 0.01745329251994329576923690768488;
  18. const double rad2deg = 57.2957795130823208767981548141052;
  19. double epsilon = 0.000001;
  20. double epsilon2 = 0.000001*0.000001;
  21. }