Skip to content
Snippets Groups Projects
Commit 1792d9a2 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MathLib] Vector3 Removed unused code.

Method does not make use of any part of Vector3.
If the functionality is needed it can be impl. outside of this class.
parent d2637b36
No related branches found
No related tags found
No related merge requests found
......@@ -115,10 +115,6 @@ public:
return TemplateVector3(this->x[0] * pR, this->x[1] * pR, this->x[2] * pR);
}
friend TemplateVector3 operator*(double pR, const TemplateVector3 & pV)
{
return TemplateVector3 ( pV[0] * pR, pV[1] * pR, pV[2] * pR );
}
TemplateVector3& operator*=(double pR)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment