Indentation

This commit is contained in:
Gianpaolo Palma 2016-10-21 11:06:11 +02:00
parent 73d84303de
commit 680d903ad5
1 changed files with 3 additions and 3 deletions

View File

@ -145,10 +145,10 @@ public:
_v[1] = nv[1];
_v[2] = nv[2];
}
inline Point3 & operator =( Point3 const & p )
inline Point3 & operator =(Point3 const & p)
{
_v[0]= p._v[0]; _v[1]= p._v[1]; _v[2]= p._v[2];
return *this;
_v[0] = p._v[0]; _v[1] = p._v[1]; _v[2] = p._v[2];
return *this;
}
inline void SetZero()
{