SA_Maths
Sapphire Suite's C++ Maths Library
|
Tangent method implementation. More...
#include <SA/Maths/Angle/Radian.hpp>
Go to the source code of this file.
Functions | |
template<typename T > | |
constexpr T | SA::Maths::Tan (Rad< T > _in) noexcept |
Compute the tangent of the input. | |
template<typename T > | |
constexpr Rad< T > | SA::Maths::ATan (T _in) noexcept |
Compute the arc-tangent of the input. | |
template<typename T > | |
constexpr Rad< T > | SA::Maths::ATan2 (T _y, T _x) noexcept |
Compute the arc-tangent 2 of _y / _x. | |
Tangent method implementation.
|
constexprnoexcept |
Compute the arc-tangent of the input.
[in] | _in | Input to compute arc-tangent. |
Compute the arc-tangent 2 of _y / _x.
[in] | _y | Y term to compute arc-tangent 2. |
[in] | _x | X term to compute arc-tangent 2. |