Guest User

Untitled

a guest
Nov 18th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. inline bool operator != (const Quatf& a, const Quatf& b) {
  2. return a.w_ == b.w_ &&
  3. a.x_ == b.x_ &&
  4. a.y_ == b.y_ &&
  5. a.z_ == b.z_
  6. ;
  7. }
Add Comment
Please, Sign In to add comment