2
0

b3Int2.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. Bullet Continuous Collision Detection and Physics Library
  3. Copyright (c) 2003-2013 Erwin Coumans http://bulletphysics.org
  4. This software is provided 'as-is', without any express or implied warranty.
  5. In no event will the authors be held liable for any damages arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it freely,
  8. subject to the following restrictions:
  9. 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  10. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  11. 3. This notice may not be removed or altered from any source distribution.
  12. */
  13. #ifndef B3_INT2_H
  14. #define B3_INT2_H
  15. #ifdef __cplusplus
  16. struct b3UnsignedInt2
  17. {
  18. union
  19. {
  20. struct
  21. {
  22. unsigned int x,y;
  23. };
  24. struct
  25. {
  26. unsigned int s[2];
  27. };
  28. };
  29. };
  30. struct b3Int2
  31. {
  32. union
  33. {
  34. struct
  35. {
  36. int x,y;
  37. };
  38. struct
  39. {
  40. int s[2];
  41. };
  42. };
  43. };
  44. inline b3Int2 b3MakeInt2(int x, int y)
  45. {
  46. b3Int2 v;
  47. v.s[0] = x; v.s[1] = y;
  48. return v;
  49. }
  50. #else
  51. #define b3UnsignedInt2 uint2
  52. #define b3Int2 int2
  53. #define b3MakeInt2 (int2)
  54. #endif //__cplusplus
  55. #endif