Browse Source

Inlined inline funciton.

vectorfields
Vladimír Vondruš 16 years ago
parent
commit
1467dc0637
  1. 2
      src/Math/Vector.h

2
src/Math/Vector.h

@ -148,7 +148,7 @@ template<class T, size_t size> class Vector {
} }
/** @brief Normalized vector (of length 1) */ /** @brief Normalized vector (of length 1) */
Vector<T, size> normalized() const { inline Vector<T, size> normalized() const {
return *this/length(); return *this/length();
} }

Loading…
Cancel
Save