Add organized the vector into header and implementation files
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
#include <cmath>
|
||||
#include "Vec3D.h"
|
||||
|
||||
int Vec3D::getLength()
|
||||
{
|
||||
return std::sqrt((x*x + y*y + z*z));
|
||||
}
|
||||
Reference in New Issue
Block a user