Skip to content
Snippets Groups Projects
Commit 8b14e911 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add simox::deg2rad and simox::rad2deg

parent 1a708f99
No related branches found
Tags v2.3.48
No related merge requests found
......@@ -50,8 +50,12 @@ SET(SOURCES
SET(INCLUDES
SimoxUtility.h
eigen/OrientedBox.h
eigen/XYConstrainedOrientedBox.h
math/convert/deg2rad.h
math/convert/rad2deg.h
)
macro(simox_subdirs result curdir)
......
#pragma once
// This file is generated!
#include "math/convert.h"
#pragma once
// This file is generated!
#include "convert/deg2rad.h"
#include "convert/rad2deg.h"
#pragma once
#include <boost/math/constants/constants.hpp>
namespace simox
{
template<class FloatT>
FloatT deg2rad(FloatT rad)
{
return rad / 180.f * boost::math::constants::pi<FloatT>();
}
}
#pragma once
#include <boost/math/constants/constants.hpp>
namespace simox
{
template<class FloatT>
FloatT rad2deg(FloatT rad)
{
return rad * 180.f / boost::math::constants::pi<FloatT>();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment