Advertisement
mrpowhs

Untitled

Feb 9th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. // Értékadás
  2.     Vec3<T>& operator= (const Vec3<T>& other)
  3.     {
  4.         if (this != &other) {v[0]=other.v[0]; v[1]=other.v[1]; v[2]=other.v[2];}
  5.         return *this;
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement