Browse Source

Doc++

pull/279/head
Vladimír Vondruš 15 years ago
parent
commit
03289b18ac
  1. 4
      src/Math/Vector.h

4
src/Math/Vector.h

@ -30,8 +30,8 @@ namespace Magnum { namespace Math {
/** @brief Vector */ /** @brief Vector */
template<class T, size_t size> class Vector { template<class T, size_t size> class Vector {
public: public:
typedef T Type; typedef T Type; /**< @brief Vector data type */
const static size_t Size = size; const static size_t Size = size; /**< @brief Vector size */
/** @brief Angle between vectors */ /** @brief Angle between vectors */
inline static T angle(const Vector<T, size>& a, const Vector<T, size>& b) { inline static T angle(const Vector<T, size>& a, const Vector<T, size>& b) {

Loading…
Cancel
Save