|
|
|
@ -213,8 +213,8 @@ template<class T> class Rad: public Unit<Rad, T> { |
|
|
|
/** @relatesalso Rad
|
|
|
|
/** @relatesalso Rad
|
|
|
|
@brief Double-precision radian value literal |
|
|
|
@brief Double-precision radian value literal |
|
|
|
|
|
|
|
|
|
|
|
See @link operator""_rad() @endlink for more information. |
|
|
|
See @link operator""_deg() @endlink for more information. |
|
|
|
@see @link operator""_radf() @endlink, @link operator""_deg() @endlink |
|
|
|
@see @link operator""_radf() @endlink |
|
|
|
@note Not available on GCC < 4.7 and MSVC 2013. Use @ref Rad::Rad(T) instead. |
|
|
|
@note Not available on GCC < 4.7 and MSVC 2013. Use @ref Rad::Rad(T) instead. |
|
|
|
@requires_gl Only single-precision types are available in OpenGL ES. |
|
|
|
@requires_gl Only single-precision types are available in OpenGL ES. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@ -225,9 +225,8 @@ constexpr Rad<Double> operator "" _rad(long double value) { return Rad<Double>(v |
|
|
|
@brief Single-precision radian value literal |
|
|
|
@brief Single-precision radian value literal |
|
|
|
|
|
|
|
|
|
|
|
See @link operator""_degf() @endlink for more information. |
|
|
|
See @link operator""_degf() @endlink for more information. |
|
|
|
@see @link operator""_rad() @endlink, @link operator""_degf() @endlink |
|
|
|
@see @link operator""_rad() @endlink |
|
|
|
@note Not available on GCC < 4.7 and MSVC 2013. Use @ref Rad::Rad(T) instead. |
|
|
|
@note Not available on GCC < 4.7 and MSVC 2013. Use @ref Rad::Rad(T) instead. |
|
|
|
@todoc Make references explicit when Doxygen can link to operator"" |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
constexpr Rad<Float> operator "" _radf(long double value) { return Rad<Float>(value); } |
|
|
|
constexpr Rad<Float> operator "" _radf(long double value) { return Rad<Float>(value); } |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|