View difference between Paste ID: W4YdkhfS and fKABPrjR
SHOW: | | - or go back to the newest paste.
1
/// OSZTÁLYON KÍVÜL
2
3
// Normalizált vektor
4
template <class T>
5
inline Vec3<T> normalized(const Vec3<T>& v)
6
{return Vec3<T>(v/v.length());}