Skip to content
Snippets Groups Projects
Commit 80e5d64c authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Cleanup in LLPlane

parent 7eabd5e0
No related branches found
No related tags found
No related merge requests found
......@@ -65,9 +65,9 @@ class LLPlane
setVec(w, d);
}
inline LLPlane& operator=(const LLVector4& v2) { mV.set(v2[0],v2[1],v2[2],v2[3]); return *this;}
inline LLPlane& operator=(const LLVector4& v2) {mV.loadua(v2.mV); return *this; }
inline LLPlane& operator=(const LLVector4a& v2) { mV.set(v2[0],v2[1],v2[2],v2[3]); return *this;}
inline LLPlane& operator=(const LLVector4a& v2) { mV = v2; return *this;}
inline void set(const LLPlane& p2) { mV = p2.mV; }
......
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