Vec3.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. // Copyright 2010 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <cmath>
  6. #include <cstdlib>
  7. #include "Common/ChunkFile.h"
  8. class Vec3
  9. {
  10. public:
  11. float x, y, z;
  12. Vec3()
  13. {
  14. }
  15. explicit Vec3(float f)
  16. {
  17. x = y = z = f;
  18. }
  19. explicit Vec3(const float *f)
  20. {
  21. x = f[0];
  22. y = f[1];
  23. z = f[2];
  24. }
  25. Vec3(const float _x, const float _y, const float _z)
  26. {
  27. x = _x;
  28. y = _y;
  29. z = _z;
  30. }
  31. void set(const float _x, const float _y, const float _z)
  32. {
  33. x = _x;
  34. y = _y;
  35. z = _z;
  36. }
  37. Vec3 operator+(const Vec3 &other) const
  38. {
  39. return Vec3(x + other.x, y + other.y, z + other.z);
  40. }
  41. void operator+=(const Vec3 &other)
  42. {
  43. x += other.x;
  44. y += other.y;
  45. z += other.z;
  46. }
  47. Vec3 operator-(const Vec3 &v) const
  48. {
  49. return Vec3(x - v.x, y - v.y, z - v.z);
  50. }
  51. void operator-=(const Vec3 &other)
  52. {
  53. x -= other.x;
  54. y -= other.y;
  55. z -= other.z;
  56. }
  57. Vec3 operator-() const
  58. {
  59. return Vec3(-x, -y, -z);
  60. }
  61. Vec3 operator*(const float f) const
  62. {
  63. return Vec3(x * f, y * f, z * f);
  64. }
  65. Vec3 operator/(const float f) const
  66. {
  67. float invf = (1.0f / f);
  68. return Vec3(x * invf, y * invf, z * invf);
  69. }
  70. void operator/=(const float f)
  71. {
  72. *this = *this / f;
  73. }
  74. float operator*(const Vec3 &other) const
  75. {
  76. return (x * other.x) +
  77. (y * other.y) +
  78. (z * other.z);
  79. }
  80. void operator*=(const float f)
  81. {
  82. *this = *this * f;
  83. }
  84. Vec3 ScaledBy(const Vec3 &other) const
  85. {
  86. return Vec3(x * other.x, y * other.y, z * other.z);
  87. }
  88. Vec3 operator%(const Vec3 &v) const
  89. {
  90. return Vec3((y * v.z) - (z * v.y),
  91. (z * v.x) - (x * v.z),
  92. (x * v.y) - (y * v.x));
  93. }
  94. float Length2() const
  95. {
  96. return (x * x) + (y * y) + (z * z);
  97. }
  98. float Length() const
  99. {
  100. return sqrtf(Length2());
  101. }
  102. float Distance2To(Vec3 &other)
  103. {
  104. return (other - (*this)).Length2();
  105. }
  106. Vec3 Normalized() const
  107. {
  108. return (*this) / Length();
  109. }
  110. void Normalize()
  111. {
  112. (*this) /= Length();
  113. }
  114. float &operator[](int i)
  115. {
  116. return *((&x) + i);
  117. }
  118. float operator[](const int i) const
  119. {
  120. return *((&x) + i);
  121. }
  122. bool operator==(const Vec3 &other) const
  123. {
  124. if (x == other.x && y == other.y && z == other.z)
  125. return true;
  126. else
  127. return false;
  128. }
  129. void SetZero()
  130. {
  131. memset((void*)this, 0, sizeof(float) * 3);
  132. }
  133. void DoState(PointerWrap &p)
  134. {
  135. p.Do(x);
  136. p.Do(y);
  137. p.Do(z);
  138. }
  139. };