#pragma once class Vec3D { public: int getLength(); int x; int y; int z; private: int size = 3; };