5#ifndef SAPPHIRE_MATHS_TAN_GUARD
6#define SAPPHIRE_MATHS_TAN_GUARD
34 return std::tan(_in.Handle());
47 return std::atan(_in);
62 return std::atan2(_y, _x);
Radian type implementation.
constexpr Rad< T > ATan2(T _y, T _x) noexcept
Compute the arc-tangent 2 of _y / _x.
Definition Tan.hpp:60
constexpr T Tan(Rad< T > _in) noexcept
Compute the tangent of the input.
Definition Tan.hpp:32
constexpr Rad< T > ATan(T _in) noexcept
Compute the arc-tangent of the input.
Definition Tan.hpp:45
Maths Radian type.
Definition Radian.hpp:36