basis.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /**************************************************************************/
  2. /* basis.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #pragma once
  31. #include "core/math/quaternion.h"
  32. #include "core/math/vector3.h"
  33. struct [[nodiscard]] Basis {
  34. Vector3 rows[3] = {
  35. Vector3(1, 0, 0),
  36. Vector3(0, 1, 0),
  37. Vector3(0, 0, 1)
  38. };
  39. constexpr const Vector3 &operator[](int p_row) const {
  40. return rows[p_row];
  41. }
  42. constexpr Vector3 &operator[](int p_row) {
  43. return rows[p_row];
  44. }
  45. void invert();
  46. void transpose();
  47. Basis inverse() const;
  48. Basis transposed() const;
  49. _FORCE_INLINE_ real_t determinant() const;
  50. void rotate(const Vector3 &p_axis, real_t p_angle);
  51. Basis rotated(const Vector3 &p_axis, real_t p_angle) const;
  52. void rotate_local(const Vector3 &p_axis, real_t p_angle);
  53. Basis rotated_local(const Vector3 &p_axis, real_t p_angle) const;
  54. void rotate(const Vector3 &p_euler, EulerOrder p_order = EulerOrder::YXZ);
  55. Basis rotated(const Vector3 &p_euler, EulerOrder p_order = EulerOrder::YXZ) const;
  56. void rotate(const Quaternion &p_quaternion);
  57. Basis rotated(const Quaternion &p_quaternion) const;
  58. Vector3 get_euler_normalized(EulerOrder p_order = EulerOrder::YXZ) const;
  59. void get_rotation_axis_angle(Vector3 &p_axis, real_t &p_angle) const;
  60. void get_rotation_axis_angle_local(Vector3 &p_axis, real_t &p_angle) const;
  61. Quaternion get_rotation_quaternion() const;
  62. void rotate_to_align(Vector3 p_start_direction, Vector3 p_end_direction);
  63. Vector3 rotref_posscale_decomposition(Basis &rotref) const;
  64. Vector3 get_euler(EulerOrder p_order = EulerOrder::YXZ) const;
  65. void set_euler(const Vector3 &p_euler, EulerOrder p_order = EulerOrder::YXZ);
  66. static Basis from_euler(const Vector3 &p_euler, EulerOrder p_order = EulerOrder::YXZ) {
  67. Basis b;
  68. b.set_euler(p_euler, p_order);
  69. return b;
  70. }
  71. Quaternion get_quaternion() const;
  72. void set_quaternion(const Quaternion &p_quaternion);
  73. void get_axis_angle(Vector3 &r_axis, real_t &r_angle) const;
  74. void set_axis_angle(const Vector3 &p_axis, real_t p_angle);
  75. void scale(const Vector3 &p_scale);
  76. Basis scaled(const Vector3 &p_scale) const;
  77. void scale_local(const Vector3 &p_scale);
  78. Basis scaled_local(const Vector3 &p_scale) const;
  79. void scale_orthogonal(const Vector3 &p_scale);
  80. Basis scaled_orthogonal(const Vector3 &p_scale) const;
  81. real_t get_uniform_scale() const;
  82. Vector3 get_scale() const;
  83. Vector3 get_scale_abs() const;
  84. Vector3 get_scale_global() const;
  85. void set_axis_angle_scale(const Vector3 &p_axis, real_t p_angle, const Vector3 &p_scale);
  86. void set_euler_scale(const Vector3 &p_euler, const Vector3 &p_scale, EulerOrder p_order = EulerOrder::YXZ);
  87. void set_quaternion_scale(const Quaternion &p_quaternion, const Vector3 &p_scale);
  88. // transposed dot products
  89. _FORCE_INLINE_ real_t tdotx(const Vector3 &p_v) const {
  90. return rows[0][0] * p_v[0] + rows[1][0] * p_v[1] + rows[2][0] * p_v[2];
  91. }
  92. _FORCE_INLINE_ real_t tdoty(const Vector3 &p_v) const {
  93. return rows[0][1] * p_v[0] + rows[1][1] * p_v[1] + rows[2][1] * p_v[2];
  94. }
  95. _FORCE_INLINE_ real_t tdotz(const Vector3 &p_v) const {
  96. return rows[0][2] * p_v[0] + rows[1][2] * p_v[1] + rows[2][2] * p_v[2];
  97. }
  98. bool is_equal_approx(const Basis &p_basis) const;
  99. bool is_same(const Basis &p_basis) const;
  100. bool is_finite() const;
  101. constexpr bool operator==(const Basis &p_matrix) const;
  102. constexpr bool operator!=(const Basis &p_matrix) const;
  103. _FORCE_INLINE_ Vector3 xform(const Vector3 &p_vector) const;
  104. _FORCE_INLINE_ Vector3 xform_inv(const Vector3 &p_vector) const;
  105. _FORCE_INLINE_ void operator*=(const Basis &p_matrix);
  106. _FORCE_INLINE_ Basis operator*(const Basis &p_matrix) const;
  107. constexpr void operator+=(const Basis &p_matrix);
  108. constexpr Basis operator+(const Basis &p_matrix) const;
  109. constexpr void operator-=(const Basis &p_matrix);
  110. constexpr Basis operator-(const Basis &p_matrix) const;
  111. constexpr void operator*=(real_t p_val);
  112. constexpr Basis operator*(real_t p_val) const;
  113. constexpr void operator/=(real_t p_val);
  114. constexpr Basis operator/(real_t p_val) const;
  115. bool is_orthogonal() const;
  116. bool is_orthonormal() const;
  117. bool is_conformal() const;
  118. bool is_diagonal() const;
  119. bool is_rotation() const;
  120. Basis lerp(const Basis &p_to, real_t p_weight) const;
  121. Basis slerp(const Basis &p_to, real_t p_weight) const;
  122. void rotate_sh(real_t *p_values);
  123. operator String() const;
  124. /* create / set */
  125. _FORCE_INLINE_ void set(real_t p_xx, real_t p_xy, real_t p_xz, real_t p_yx, real_t p_yy, real_t p_yz, real_t p_zx, real_t p_zy, real_t p_zz) {
  126. rows[0][0] = p_xx;
  127. rows[0][1] = p_xy;
  128. rows[0][2] = p_xz;
  129. rows[1][0] = p_yx;
  130. rows[1][1] = p_yy;
  131. rows[1][2] = p_yz;
  132. rows[2][0] = p_zx;
  133. rows[2][1] = p_zy;
  134. rows[2][2] = p_zz;
  135. }
  136. _FORCE_INLINE_ void set_columns(const Vector3 &p_x, const Vector3 &p_y, const Vector3 &p_z) {
  137. set_column(0, p_x);
  138. set_column(1, p_y);
  139. set_column(2, p_z);
  140. }
  141. _FORCE_INLINE_ Vector3 get_column(int p_index) const {
  142. // Get actual basis axis column (we store transposed as rows for performance).
  143. return Vector3(rows[0][p_index], rows[1][p_index], rows[2][p_index]);
  144. }
  145. _FORCE_INLINE_ void set_column(int p_index, const Vector3 &p_value) {
  146. // Set actual basis axis column (we store transposed as rows for performance).
  147. rows[0][p_index] = p_value.x;
  148. rows[1][p_index] = p_value.y;
  149. rows[2][p_index] = p_value.z;
  150. }
  151. _FORCE_INLINE_ Vector3 get_main_diagonal() const {
  152. return Vector3(rows[0][0], rows[1][1], rows[2][2]);
  153. }
  154. _FORCE_INLINE_ void set_zero() {
  155. rows[0].zero();
  156. rows[1].zero();
  157. rows[2].zero();
  158. }
  159. _FORCE_INLINE_ Basis transpose_xform(const Basis &p_m) const {
  160. return Basis(
  161. rows[0].x * p_m[0].x + rows[1].x * p_m[1].x + rows[2].x * p_m[2].x,
  162. rows[0].x * p_m[0].y + rows[1].x * p_m[1].y + rows[2].x * p_m[2].y,
  163. rows[0].x * p_m[0].z + rows[1].x * p_m[1].z + rows[2].x * p_m[2].z,
  164. rows[0].y * p_m[0].x + rows[1].y * p_m[1].x + rows[2].y * p_m[2].x,
  165. rows[0].y * p_m[0].y + rows[1].y * p_m[1].y + rows[2].y * p_m[2].y,
  166. rows[0].y * p_m[0].z + rows[1].y * p_m[1].z + rows[2].y * p_m[2].z,
  167. rows[0].z * p_m[0].x + rows[1].z * p_m[1].x + rows[2].z * p_m[2].x,
  168. rows[0].z * p_m[0].y + rows[1].z * p_m[1].y + rows[2].z * p_m[2].y,
  169. rows[0].z * p_m[0].z + rows[1].z * p_m[1].z + rows[2].z * p_m[2].z);
  170. }
  171. constexpr Basis(real_t p_xx, real_t p_xy, real_t p_xz, real_t p_yx, real_t p_yy, real_t p_yz, real_t p_zx, real_t p_zy, real_t p_zz) :
  172. rows{
  173. { p_xx, p_xy, p_xz },
  174. { p_yx, p_yy, p_yz },
  175. { p_zx, p_zy, p_zz },
  176. } {}
  177. void orthonormalize();
  178. Basis orthonormalized() const;
  179. void orthogonalize();
  180. Basis orthogonalized() const;
  181. #ifdef MATH_CHECKS
  182. bool is_symmetric() const;
  183. #endif
  184. Basis diagonalize();
  185. operator Quaternion() const { return get_quaternion(); }
  186. static Basis looking_at(const Vector3 &p_target, const Vector3 &p_up = Vector3(0, 1, 0), bool p_use_model_front = false);
  187. Basis(const Quaternion &p_quaternion) { set_quaternion(p_quaternion); }
  188. Basis(const Quaternion &p_quaternion, const Vector3 &p_scale) { set_quaternion_scale(p_quaternion, p_scale); }
  189. Basis(const Vector3 &p_axis, real_t p_angle) { set_axis_angle(p_axis, p_angle); }
  190. Basis(const Vector3 &p_axis, real_t p_angle, const Vector3 &p_scale) { set_axis_angle_scale(p_axis, p_angle, p_scale); }
  191. static Basis from_scale(const Vector3 &p_scale);
  192. constexpr Basis(const Vector3 &p_x_axis, const Vector3 &p_y_axis, const Vector3 &p_z_axis) :
  193. rows{
  194. { p_x_axis.x, p_y_axis.x, p_z_axis.x },
  195. { p_x_axis.y, p_y_axis.y, p_z_axis.y },
  196. { p_x_axis.z, p_y_axis.z, p_z_axis.z },
  197. } {}
  198. Basis() = default;
  199. private:
  200. // Helper method.
  201. void _set_diagonal(const Vector3 &p_diag);
  202. };
  203. constexpr bool Basis::operator==(const Basis &p_matrix) const {
  204. for (int i = 0; i < 3; i++) {
  205. for (int j = 0; j < 3; j++) {
  206. if (rows[i][j] != p_matrix.rows[i][j]) {
  207. return false;
  208. }
  209. }
  210. }
  211. return true;
  212. }
  213. constexpr bool Basis::operator!=(const Basis &p_matrix) const {
  214. return (!(*this == p_matrix));
  215. }
  216. _FORCE_INLINE_ void Basis::operator*=(const Basis &p_matrix) {
  217. set(
  218. p_matrix.tdotx(rows[0]), p_matrix.tdoty(rows[0]), p_matrix.tdotz(rows[0]),
  219. p_matrix.tdotx(rows[1]), p_matrix.tdoty(rows[1]), p_matrix.tdotz(rows[1]),
  220. p_matrix.tdotx(rows[2]), p_matrix.tdoty(rows[2]), p_matrix.tdotz(rows[2]));
  221. }
  222. _FORCE_INLINE_ Basis Basis::operator*(const Basis &p_matrix) const {
  223. return Basis(
  224. p_matrix.tdotx(rows[0]), p_matrix.tdoty(rows[0]), p_matrix.tdotz(rows[0]),
  225. p_matrix.tdotx(rows[1]), p_matrix.tdoty(rows[1]), p_matrix.tdotz(rows[1]),
  226. p_matrix.tdotx(rows[2]), p_matrix.tdoty(rows[2]), p_matrix.tdotz(rows[2]));
  227. }
  228. constexpr void Basis::operator+=(const Basis &p_matrix) {
  229. rows[0] += p_matrix.rows[0];
  230. rows[1] += p_matrix.rows[1];
  231. rows[2] += p_matrix.rows[2];
  232. }
  233. constexpr Basis Basis::operator+(const Basis &p_matrix) const {
  234. Basis ret(*this);
  235. ret += p_matrix;
  236. return ret;
  237. }
  238. constexpr void Basis::operator-=(const Basis &p_matrix) {
  239. rows[0] -= p_matrix.rows[0];
  240. rows[1] -= p_matrix.rows[1];
  241. rows[2] -= p_matrix.rows[2];
  242. }
  243. constexpr Basis Basis::operator-(const Basis &p_matrix) const {
  244. Basis ret(*this);
  245. ret -= p_matrix;
  246. return ret;
  247. }
  248. constexpr void Basis::operator*=(real_t p_val) {
  249. rows[0] *= p_val;
  250. rows[1] *= p_val;
  251. rows[2] *= p_val;
  252. }
  253. constexpr Basis Basis::operator*(real_t p_val) const {
  254. Basis ret(*this);
  255. ret *= p_val;
  256. return ret;
  257. }
  258. constexpr void Basis::operator/=(real_t p_val) {
  259. rows[0] /= p_val;
  260. rows[1] /= p_val;
  261. rows[2] /= p_val;
  262. }
  263. constexpr Basis Basis::operator/(real_t p_val) const {
  264. Basis ret(*this);
  265. ret /= p_val;
  266. return ret;
  267. }
  268. Vector3 Basis::xform(const Vector3 &p_vector) const {
  269. return Vector3(
  270. rows[0].dot(p_vector),
  271. rows[1].dot(p_vector),
  272. rows[2].dot(p_vector));
  273. }
  274. Vector3 Basis::xform_inv(const Vector3 &p_vector) const {
  275. return Vector3(
  276. (rows[0][0] * p_vector.x) + (rows[1][0] * p_vector.y) + (rows[2][0] * p_vector.z),
  277. (rows[0][1] * p_vector.x) + (rows[1][1] * p_vector.y) + (rows[2][1] * p_vector.z),
  278. (rows[0][2] * p_vector.x) + (rows[1][2] * p_vector.y) + (rows[2][2] * p_vector.z));
  279. }
  280. real_t Basis::determinant() const {
  281. return rows[0][0] * (rows[1][1] * rows[2][2] - rows[2][1] * rows[1][2]) -
  282. rows[1][0] * (rows[0][1] * rows[2][2] - rows[2][1] * rows[0][2]) +
  283. rows[2][0] * (rows[0][1] * rows[1][2] - rows[1][1] * rows[0][2]);
  284. }