Browse Source

Doc++

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
b0883f8d6b
  1. 3
      src/Math/Functions.h

3
src/Math/Functions.h

@ -164,8 +164,7 @@ template<std::size_t size, class T> Vector<size, T> max(const Vector<size, T>& a
/**
@brief Sign
Returns `1.0` if @f$ x > 0 @f$, `0.0` if @f$ @p x = 0 @f$ and `-1.0` if
@f$ x < 0 @f$.
Returns `1` if @p x > 0, `0` if @p x = 0 and `-1` if @p x < 0.
*/
#ifdef DOXYGEN_GENERATING_OUTPUT
template<class T> inline T sign(const T scalar);

Loading…
Cancel
Save