Files
rive-cpp/include/math/circle_constant.hpp
2020-08-16 18:20:11 -07:00

9 lines
204 B
C++

#ifndef _RIVE_CIRCLE_CONSTANT_HPP_
#define _RIVE_CIRCLE_CONSTANT_HPP_
namespace rive
{
constexpr float circleConstant = 0.552284749831;
constexpr float icircleConstant = 1.0-circleConstant;
}
#endif