#include #include "Vec3D.h" int Vec3D::getLength() { return std::sqrt((x*x + y*y + z*z)); }