/// OSZTÁLYON KÍVÜL
// Normalizált vektor
template <class T>
inline Vec3<T> normalized(const Vec3<T>& v)
{return Vec3<T>(v/v.length());}