test_vector3.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. /**************************************************************************/
  2. /* test_vector3.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/vector3.h"
  32. #include "tests/test_macros.h"
  33. namespace TestVector3 {
  34. TEST_CASE("[Vector3] Constructor methods") {
  35. constexpr Vector3 vector_empty = Vector3();
  36. constexpr Vector3 vector_zero = Vector3(0.0, 0.0, 0.0);
  37. static_assert(
  38. vector_empty == vector_zero,
  39. "Vector3 Constructor with no inputs should return a zero Vector3.");
  40. }
  41. TEST_CASE("[Vector3] Angle methods") {
  42. constexpr Vector3 vector_x = Vector3(1, 0, 0);
  43. constexpr Vector3 vector_y = Vector3(0, 1, 0);
  44. constexpr Vector3 vector_yz = Vector3(0, 1, 1);
  45. CHECK_MESSAGE(
  46. vector_x.angle_to(vector_y) == doctest::Approx((real_t)Math::TAU / 4),
  47. "Vector3 angle_to should work as expected.");
  48. CHECK_MESSAGE(
  49. vector_x.angle_to(vector_yz) == doctest::Approx((real_t)Math::TAU / 4),
  50. "Vector3 angle_to should work as expected.");
  51. CHECK_MESSAGE(
  52. vector_yz.angle_to(vector_x) == doctest::Approx((real_t)Math::TAU / 4),
  53. "Vector3 angle_to should work as expected.");
  54. CHECK_MESSAGE(
  55. vector_y.angle_to(vector_yz) == doctest::Approx((real_t)Math::TAU / 8),
  56. "Vector3 angle_to should work as expected.");
  57. CHECK_MESSAGE(
  58. vector_x.signed_angle_to(vector_y, vector_y) == doctest::Approx((real_t)Math::TAU / 4),
  59. "Vector3 signed_angle_to edge case should be positive.");
  60. CHECK_MESSAGE(
  61. vector_x.signed_angle_to(vector_yz, vector_y) == doctest::Approx((real_t)Math::TAU / -4),
  62. "Vector3 signed_angle_to should work as expected.");
  63. CHECK_MESSAGE(
  64. vector_yz.signed_angle_to(vector_x, vector_y) == doctest::Approx((real_t)Math::TAU / 4),
  65. "Vector3 signed_angle_to should work as expected.");
  66. }
  67. TEST_CASE("[Vector3] Axis methods") {
  68. Vector3 vector = Vector3(1.2, 3.4, 5.6);
  69. CHECK_MESSAGE(
  70. vector.max_axis_index() == Vector3::Axis::AXIS_Z,
  71. "Vector3 max_axis_index should work as expected.");
  72. CHECK_MESSAGE(
  73. vector.min_axis_index() == Vector3::Axis::AXIS_X,
  74. "Vector3 min_axis_index should work as expected.");
  75. CHECK_MESSAGE(
  76. vector[vector.max_axis_index()] == (real_t)5.6,
  77. "Vector3 array operator should work as expected.");
  78. CHECK_MESSAGE(
  79. vector[vector.min_axis_index()] == (real_t)1.2,
  80. "Vector3 array operator should work as expected.");
  81. vector[Vector3::Axis::AXIS_Y] = 3.7;
  82. CHECK_MESSAGE(
  83. vector[Vector3::Axis::AXIS_Y] == (real_t)3.7,
  84. "Vector3 array operator setter should work as expected.");
  85. }
  86. TEST_CASE("[Vector3] Interpolation methods") {
  87. constexpr Vector3 vector1 = Vector3(1, 2, 3);
  88. constexpr Vector3 vector2 = Vector3(4, 5, 6);
  89. CHECK_MESSAGE(
  90. vector1.lerp(vector2, 0.5) == Vector3(2.5, 3.5, 4.5),
  91. "Vector3 lerp should work as expected.");
  92. CHECK_MESSAGE(
  93. vector1.lerp(vector2, 1.0 / 3.0).is_equal_approx(Vector3(2, 3, 4)),
  94. "Vector3 lerp should work as expected.");
  95. CHECK_MESSAGE(
  96. vector1.normalized().slerp(vector2.normalized(), 0.5).is_equal_approx(Vector3(0.363866806030273438, 0.555698215961456299, 0.747529566287994385)),
  97. "Vector3 slerp should work as expected.");
  98. CHECK_MESSAGE(
  99. vector1.normalized().slerp(vector2.normalized(), 1.0 / 3.0).is_equal_approx(Vector3(0.332119762897491455, 0.549413740634918213, 0.766707837581634521)),
  100. "Vector3 slerp should work as expected.");
  101. CHECK_MESSAGE(
  102. Vector3(5, 0, 0).slerp(Vector3(0, 3, 4), 0.5).is_equal_approx(Vector3(3.535533905029296875, 2.121320486068725586, 2.828427314758300781)),
  103. "Vector3 slerp with non-normalized values should work as expected.");
  104. CHECK_MESSAGE(
  105. Vector3(1, 1, 1).slerp(Vector3(2, 2, 2), 0.5).is_equal_approx(Vector3(1.5, 1.5, 1.5)),
  106. "Vector3 slerp with colinear inputs should behave as expected.");
  107. CHECK_MESSAGE(
  108. Vector3().slerp(Vector3(), 0.5) == Vector3(),
  109. "Vector3 slerp with both inputs as zero vectors should return a zero vector.");
  110. CHECK_MESSAGE(
  111. Vector3().slerp(Vector3(1, 1, 1), 0.5) == Vector3(0.5, 0.5, 0.5),
  112. "Vector3 slerp with one input as zero should behave like a regular lerp.");
  113. CHECK_MESSAGE(
  114. Vector3(1, 1, 1).slerp(Vector3(), 0.5) == Vector3(0.5, 0.5, 0.5),
  115. "Vector3 slerp with one input as zero should behave like a regular lerp.");
  116. CHECK_MESSAGE(
  117. Vector3(4, 6, 2).slerp(Vector3(8, 10, 3), 0.5).is_equal_approx(Vector3(5.90194219811429941053, 8.06758688849378394534, 2.558307894718317120038)),
  118. "Vector3 slerp should work as expected.");
  119. CHECK_MESSAGE(
  120. vector1.slerp(vector2, 0.5).length() == doctest::Approx((real_t)6.25831088708303172),
  121. "Vector3 slerp with different length input should return a vector with an interpolated length.");
  122. CHECK_MESSAGE(
  123. vector1.angle_to(vector1.slerp(vector2, 0.5)) * 2 == doctest::Approx(vector1.angle_to(vector2)),
  124. "Vector3 slerp with different length input should return a vector with an interpolated angle.");
  125. CHECK_MESSAGE(
  126. vector1.cubic_interpolate(vector2, Vector3(), Vector3(7, 7, 7), 0.5) == Vector3(2.375, 3.5, 4.625),
  127. "Vector3 cubic_interpolate should work as expected.");
  128. CHECK_MESSAGE(
  129. vector1.cubic_interpolate(vector2, Vector3(), Vector3(7, 7, 7), 1.0 / 3.0).is_equal_approx(Vector3(1.851851940155029297, 2.962963104248046875, 4.074074268341064453)),
  130. "Vector3 cubic_interpolate should work as expected.");
  131. CHECK_MESSAGE(
  132. Vector3(1, 0, 0).move_toward(Vector3(10, 0, 0), 3) == Vector3(4, 0, 0),
  133. "Vector3 move_toward should work as expected.");
  134. }
  135. TEST_CASE("[Vector3] Length methods") {
  136. constexpr Vector3 vector1 = Vector3(10, 10, 10);
  137. constexpr Vector3 vector2 = Vector3(20, 30, 40);
  138. CHECK_MESSAGE(
  139. vector1.length_squared() == 300,
  140. "Vector3 length_squared should work as expected and return exact result.");
  141. CHECK_MESSAGE(
  142. vector1.length() == doctest::Approx(10 * (real_t)Math::SQRT3),
  143. "Vector3 length should work as expected.");
  144. CHECK_MESSAGE(
  145. vector2.length_squared() == 2900,
  146. "Vector3 length_squared should work as expected and return exact result.");
  147. CHECK_MESSAGE(
  148. vector2.length() == doctest::Approx((real_t)53.8516480713450403125),
  149. "Vector3 length should work as expected.");
  150. CHECK_MESSAGE(
  151. vector1.distance_squared_to(vector2) == 1400,
  152. "Vector3 distance_squared_to should work as expected and return exact result.");
  153. CHECK_MESSAGE(
  154. vector1.distance_to(vector2) == doctest::Approx((real_t)37.41657386773941385584),
  155. "Vector3 distance_to should work as expected.");
  156. }
  157. TEST_CASE("[Vector3] Limiting methods") {
  158. constexpr Vector3 vector = Vector3(10, 10, 10);
  159. CHECK_MESSAGE(
  160. vector.limit_length().is_equal_approx(Vector3(Math::SQRT13, Math::SQRT13, Math::SQRT13)),
  161. "Vector3 limit_length should work as expected.");
  162. CHECK_MESSAGE(
  163. vector.limit_length(5).is_equal_approx(5 * Vector3(Math::SQRT13, Math::SQRT13, Math::SQRT13)),
  164. "Vector3 limit_length should work as expected.");
  165. CHECK_MESSAGE(
  166. Vector3(-5, 5, 15).clamp(Vector3(), vector) == Vector3(0, 5, 10),
  167. "Vector3 clamp should work as expected.");
  168. CHECK_MESSAGE(
  169. vector.clamp(Vector3(0, 10, 15), Vector3(5, 10, 20)) == Vector3(5, 10, 15),
  170. "Vector3 clamp should work as expected.");
  171. }
  172. TEST_CASE("[Vector3] Normalization methods") {
  173. CHECK_MESSAGE(
  174. Vector3(1, 0, 0).is_normalized() == true,
  175. "Vector3 is_normalized should return true for a normalized vector.");
  176. CHECK_MESSAGE(
  177. Vector3(1, 1, 1).is_normalized() == false,
  178. "Vector3 is_normalized should return false for a non-normalized vector.");
  179. CHECK_MESSAGE(
  180. Vector3(1, 0, 0).normalized() == Vector3(1, 0, 0),
  181. "Vector3 normalized should return the same vector for a normalized vector.");
  182. CHECK_MESSAGE(
  183. Vector3(1, 1, 0).normalized().is_equal_approx(Vector3(Math::SQRT12, Math::SQRT12, 0)),
  184. "Vector3 normalized should work as expected.");
  185. CHECK_MESSAGE(
  186. Vector3(1, 1, 1).normalized().is_equal_approx(Vector3(Math::SQRT13, Math::SQRT13, Math::SQRT13)),
  187. "Vector3 normalized should work as expected.");
  188. Vector3 vector = Vector3(3.2, -5.4, 6);
  189. vector.normalize();
  190. CHECK_MESSAGE(
  191. vector == Vector3(3.2, -5.4, 6).normalized(),
  192. "Vector3 normalize should convert same way as Vector3 normalized.");
  193. CHECK_MESSAGE(
  194. vector.is_equal_approx(Vector3(0.368522751763902980457, -0.621882143601586279522, 0.6909801595573180883585)),
  195. "Vector3 normalize should work as expected.");
  196. }
  197. TEST_CASE("[Vector3] Operators") {
  198. constexpr Vector3 decimal1 = Vector3(2.3, 4.9, 7.8);
  199. constexpr Vector3 decimal2 = Vector3(1.2, 3.4, 5.6);
  200. constexpr Vector3 power1 = Vector3(0.75, 1.5, 0.625);
  201. constexpr Vector3 power2 = Vector3(0.5, 0.125, 0.25);
  202. constexpr Vector3 int1 = Vector3(4, 5, 9);
  203. constexpr Vector3 int2 = Vector3(1, 2, 3);
  204. CHECK_MESSAGE(
  205. (decimal1 + decimal2).is_equal_approx(Vector3(3.5, 8.3, 13.4)),
  206. "Vector3 addition should behave as expected.");
  207. static_assert(
  208. (power1 + power2) == Vector3(1.25, 1.625, 0.875),
  209. "Vector3 addition with powers of two should give exact results.");
  210. static_assert(
  211. (int1 + int2) == Vector3(5, 7, 12),
  212. "Vector3 addition with integers should give exact results.");
  213. CHECK_MESSAGE(
  214. (decimal1 - decimal2).is_equal_approx(Vector3(1.1, 1.5, 2.2)),
  215. "Vector3 subtraction should behave as expected.");
  216. static_assert(
  217. (power1 - power2) == Vector3(0.25, 1.375, 0.375),
  218. "Vector3 subtraction with powers of two should give exact results.");
  219. static_assert(
  220. (int1 - int2) == Vector3(3, 3, 6),
  221. "Vector3 subtraction with integers should give exact results.");
  222. CHECK_MESSAGE(
  223. (decimal1 * decimal2).is_equal_approx(Vector3(2.76, 16.66, 43.68)),
  224. "Vector3 multiplication should behave as expected.");
  225. static_assert(
  226. (power1 * power2) == Vector3(0.375, 0.1875, 0.15625),
  227. "Vector3 multiplication with powers of two should give exact results.");
  228. static_assert(
  229. (int1 * int2) == Vector3(4, 10, 27),
  230. "Vector3 multiplication with integers should give exact results.");
  231. CHECK_MESSAGE(
  232. (decimal1 / decimal2).is_equal_approx(Vector3(1.91666666666666666, 1.44117647058823529, 1.39285714285714286)),
  233. "Vector3 division should behave as expected.");
  234. static_assert(
  235. (power1 / power2) == Vector3(1.5, 12.0, 2.5),
  236. "Vector3 division with powers of two should give exact results.");
  237. static_assert(
  238. (int1 / int2) == Vector3(4, 2.5, 3),
  239. "Vector3 division with integers should give exact results.");
  240. CHECK_MESSAGE(
  241. (decimal1 * 2).is_equal_approx(Vector3(4.6, 9.8, 15.6)),
  242. "Vector3 multiplication should behave as expected.");
  243. static_assert(
  244. (power1 * 2) == Vector3(1.5, 3, 1.25),
  245. "Vector3 multiplication with powers of two should give exact results.");
  246. static_assert(
  247. (int1 * 2) == Vector3(8, 10, 18),
  248. "Vector3 multiplication with integers should give exact results.");
  249. CHECK_MESSAGE(
  250. (decimal1 / 2).is_equal_approx(Vector3(1.15, 2.45, 3.9)),
  251. "Vector3 division should behave as expected.");
  252. static_assert(
  253. (power1 / 2) == Vector3(0.375, 0.75, 0.3125),
  254. "Vector3 division with powers of two should give exact results.");
  255. static_assert(
  256. (int1 / 2) == Vector3(2, 2.5, 4.5),
  257. "Vector3 division with integers should give exact results.");
  258. CHECK_MESSAGE(
  259. ((Vector3i)decimal1) == Vector3i(2, 4, 7),
  260. "Vector3 cast to Vector3i should work as expected.");
  261. CHECK_MESSAGE(
  262. ((Vector3i)decimal2) == Vector3i(1, 3, 5),
  263. "Vector3 cast to Vector3i should work as expected.");
  264. CHECK_MESSAGE(
  265. Vector3(Vector3i(1, 2, 3)) == Vector3(1, 2, 3),
  266. "Vector3 constructed from Vector3i should work as expected.");
  267. CHECK_MESSAGE(
  268. ((String)decimal1) == "(2.3, 4.9, 7.8)",
  269. "Vector3 cast to String should work as expected.");
  270. CHECK_MESSAGE(
  271. ((String)decimal2) == "(1.2, 3.4, 5.6)",
  272. "Vector3 cast to String should work as expected.");
  273. CHECK_MESSAGE(
  274. ((String)Vector3(9.7, 9.8, 9.9)) == "(9.7, 9.8, 9.9)",
  275. "Vector3 cast to String should work as expected.");
  276. #ifdef REAL_T_IS_DOUBLE
  277. CHECK_MESSAGE(
  278. ((String)Vector3(Math::E, Math::SQRT2, Math::SQRT3)) == "(2.71828182845905, 1.4142135623731, 1.73205080756888)",
  279. "Vector3 cast to String should print the correct amount of digits for real_t = double.");
  280. #else
  281. CHECK_MESSAGE(
  282. ((String)Vector3(Math::E, Math::SQRT2, Math::SQRT3)) == "(2.718282, 1.414214, 1.732051)",
  283. "Vector3 cast to String should print the correct amount of digits for real_t = float.");
  284. #endif // REAL_T_IS_DOUBLE
  285. }
  286. TEST_CASE("[Vector3] Other methods") {
  287. constexpr Vector3 vector = Vector3(1.2, 3.4, 5.6);
  288. CHECK_MESSAGE(
  289. vector.direction_to(Vector3()).is_equal_approx(-vector.normalized()),
  290. "Vector3 direction_to should work as expected.");
  291. CHECK_MESSAGE(
  292. Vector3(1, 1, 1).direction_to(Vector3(2, 2, 2)).is_equal_approx(Vector3(Math::SQRT13, Math::SQRT13, Math::SQRT13)),
  293. "Vector3 direction_to should work as expected.");
  294. CHECK_MESSAGE(
  295. vector.inverse().is_equal_approx(Vector3(1 / 1.2, 1 / 3.4, 1 / 5.6)),
  296. "Vector3 inverse should work as expected.");
  297. CHECK_MESSAGE(
  298. vector.posmod(2).is_equal_approx(Vector3(1.2, 1.4, 1.6)),
  299. "Vector3 posmod should work as expected.");
  300. CHECK_MESSAGE(
  301. (-vector).posmod(2).is_equal_approx(Vector3(0.8, 0.6, 0.4)),
  302. "Vector3 posmod should work as expected.");
  303. CHECK_MESSAGE(
  304. vector.posmodv(Vector3(1, 2, 3)).is_equal_approx(Vector3(0.2, 1.4, 2.6)),
  305. "Vector3 posmodv should work as expected.");
  306. CHECK_MESSAGE(
  307. (-vector).posmodv(Vector3(2, 3, 4)).is_equal_approx(Vector3(0.8, 2.6, 2.4)),
  308. "Vector3 posmodv should work as expected.");
  309. CHECK_MESSAGE(
  310. vector.rotated(Vector3(0, 1, 0), Math::TAU).is_equal_approx(vector),
  311. "Vector3 rotated should work as expected.");
  312. CHECK_MESSAGE(
  313. vector.rotated(Vector3(0, 1, 0), Math::TAU / 4).is_equal_approx(Vector3(5.6, 3.4, -1.2)),
  314. "Vector3 rotated should work as expected.");
  315. CHECK_MESSAGE(
  316. vector.rotated(Vector3(1, 0, 0), Math::TAU / 3).is_equal_approx(Vector3(1.2, -6.54974226119285642, 0.1444863728670914)),
  317. "Vector3 rotated should work as expected.");
  318. CHECK_MESSAGE(
  319. vector.rotated(Vector3(0, 0, 1), Math::TAU / 2).is_equal_approx(vector.rotated(Vector3(0, 0, 1), Math::TAU / -2)),
  320. "Vector3 rotated should work as expected.");
  321. CHECK_MESSAGE(
  322. vector.snapped(Vector3(1, 1, 1)) == Vector3(1, 3, 6),
  323. "Vector3 snapped to integers should be the same as rounding.");
  324. CHECK_MESSAGE(
  325. vector.snapped(Vector3(0.25, 0.25, 0.25)) == Vector3(1.25, 3.5, 5.5),
  326. "Vector3 snapped to 0.25 should give exact results.");
  327. CHECK_MESSAGE(
  328. Vector3(1.2, 2.5, 2.0).is_equal_approx(vector.min(Vector3(3.0, 2.5, 2.0))),
  329. "Vector3 min should return expected value.");
  330. CHECK_MESSAGE(
  331. Vector3(5.3, 3.4, 5.6).is_equal_approx(vector.max(Vector3(5.3, 2.0, 3.0))),
  332. "Vector3 max should return expected value.");
  333. }
  334. TEST_CASE("[Vector3] Plane methods") {
  335. constexpr Vector3 vector = Vector3(1.2, 3.4, 5.6);
  336. constexpr Vector3 vector_y = Vector3(0, 1, 0);
  337. constexpr Vector3 vector_normal = Vector3(0.88763458893247992491, 0.26300284116517923701, 0.37806658417494515320);
  338. CHECK_MESSAGE(
  339. vector.bounce(vector_y) == Vector3(1.2, -3.4, 5.6),
  340. "Vector3 bounce on a plane with normal of the Y axis should.");
  341. CHECK_MESSAGE(
  342. vector.bounce(vector_normal).is_equal_approx(Vector3(-6.0369629829775736287, 1.25571467171034855444, 2.517589840583626047)),
  343. "Vector3 bounce with normal should return expected value.");
  344. CHECK_MESSAGE(
  345. vector.reflect(vector_y) == Vector3(-1.2, 3.4, -5.6),
  346. "Vector3 reflect on a plane with normal of the Y axis should.");
  347. CHECK_MESSAGE(
  348. vector.reflect(vector_normal).is_equal_approx(Vector3(6.0369629829775736287, -1.25571467171034855444, -2.517589840583626047)),
  349. "Vector3 reflect with normal should return expected value.");
  350. CHECK_MESSAGE(
  351. vector.project(vector_y) == Vector3(0, 3.4, 0),
  352. "Vector3 projected on the Y axis should only give the Y component.");
  353. CHECK_MESSAGE(
  354. vector.project(vector_normal).is_equal_approx(Vector3(3.61848149148878681437, 1.0721426641448257227776, 1.54120507970818697649)),
  355. "Vector3 projected on a normal should return expected value.");
  356. CHECK_MESSAGE(
  357. vector.slide(vector_y) == Vector3(1.2, 0, 5.6),
  358. "Vector3 slide on a plane with normal of the Y axis should set the Y to zero.");
  359. CHECK_MESSAGE(
  360. vector.slide(vector_normal).is_equal_approx(Vector3(-2.41848149148878681437, 2.32785733585517427722237, 4.0587949202918130235)),
  361. "Vector3 slide with normal should return expected value.");
  362. // There's probably a better way to test these ones?
  363. #ifdef MATH_CHECKS
  364. constexpr Vector3 vector_non_normal = Vector3(5.4, 1.6, 2.3);
  365. ERR_PRINT_OFF;
  366. CHECK_MESSAGE(
  367. vector.bounce(vector_non_normal).is_equal_approx(Vector3()),
  368. "Vector3 bounce should return empty Vector3 with non-normalized input.");
  369. CHECK_MESSAGE(
  370. vector.reflect(vector_non_normal).is_equal_approx(Vector3()),
  371. "Vector3 reflect should return empty Vector3 with non-normalized input.");
  372. CHECK_MESSAGE(
  373. vector.slide(vector_non_normal).is_equal_approx(Vector3()),
  374. "Vector3 slide should return empty Vector3 with non-normalized input.");
  375. ERR_PRINT_ON;
  376. #endif // MATH_CHECKS
  377. }
  378. TEST_CASE("[Vector3] Rounding methods") {
  379. constexpr Vector3 vector1 = Vector3(1.2, 3.4, 5.6);
  380. constexpr Vector3 vector2 = Vector3(1.2, -3.4, -5.6);
  381. CHECK_MESSAGE(
  382. vector1.abs() == vector1,
  383. "Vector3 abs should work as expected.");
  384. CHECK_MESSAGE(
  385. vector2.abs() == vector1,
  386. "Vector3 abs should work as expected.");
  387. CHECK_MESSAGE(
  388. vector1.ceil() == Vector3(2, 4, 6),
  389. "Vector3 ceil should work as expected.");
  390. CHECK_MESSAGE(
  391. vector2.ceil() == Vector3(2, -3, -5),
  392. "Vector3 ceil should work as expected.");
  393. CHECK_MESSAGE(
  394. vector1.floor() == Vector3(1, 3, 5),
  395. "Vector3 floor should work as expected.");
  396. CHECK_MESSAGE(
  397. vector2.floor() == Vector3(1, -4, -6),
  398. "Vector3 floor should work as expected.");
  399. CHECK_MESSAGE(
  400. vector1.round() == Vector3(1, 3, 6),
  401. "Vector3 round should work as expected.");
  402. CHECK_MESSAGE(
  403. vector2.round() == Vector3(1, -3, -6),
  404. "Vector3 round should work as expected.");
  405. CHECK_MESSAGE(
  406. vector1.sign() == Vector3(1, 1, 1),
  407. "Vector3 sign should work as expected.");
  408. CHECK_MESSAGE(
  409. vector2.sign() == Vector3(1, -1, -1),
  410. "Vector3 sign should work as expected.");
  411. }
  412. TEST_CASE("[Vector3] Linear algebra methods") {
  413. constexpr Vector3 vector_x = Vector3(1, 0, 0);
  414. constexpr Vector3 vector_y = Vector3(0, 1, 0);
  415. constexpr Vector3 vector_z = Vector3(0, 0, 1);
  416. constexpr Vector3 a = Vector3(3.5, 8.5, 2.3);
  417. constexpr Vector3 b = Vector3(5.2, 4.6, 7.8);
  418. CHECK_MESSAGE(
  419. vector_x.cross(vector_y) == vector_z,
  420. "Vector3 cross product of X and Y should give Z.");
  421. CHECK_MESSAGE(
  422. vector_y.cross(vector_x) == -vector_z,
  423. "Vector3 cross product of Y and X should give negative Z.");
  424. CHECK_MESSAGE(
  425. vector_y.cross(vector_z) == vector_x,
  426. "Vector3 cross product of Y and Z should give X.");
  427. CHECK_MESSAGE(
  428. vector_z.cross(vector_x) == vector_y,
  429. "Vector3 cross product of Z and X should give Y.");
  430. CHECK_MESSAGE(
  431. a.cross(b).is_equal_approx(Vector3(55.72, -15.34, -28.1)),
  432. "Vector3 cross should return expected value.");
  433. CHECK_MESSAGE(
  434. Vector3(-a.x, a.y, -a.z).cross(Vector3(b.x, -b.y, b.z)).is_equal_approx(Vector3(55.72, 15.34, -28.1)),
  435. "Vector2 cross should return expected value.");
  436. CHECK_MESSAGE(
  437. vector_x.dot(vector_y) == 0.0,
  438. "Vector3 dot product of perpendicular vectors should be zero.");
  439. CHECK_MESSAGE(
  440. vector_x.dot(vector_x) == 1.0,
  441. "Vector3 dot product of identical unit vectors should be one.");
  442. CHECK_MESSAGE(
  443. (vector_x * 10).dot(vector_x * 10) == 100.0,
  444. "Vector3 dot product of same direction vectors should behave as expected.");
  445. CHECK_MESSAGE(
  446. a.dot(b) == doctest::Approx((real_t)75.24),
  447. "Vector3 dot should return expected value.");
  448. CHECK_MESSAGE(
  449. Vector3(-a.x, a.y, -a.z).dot(Vector3(b.x, -b.y, b.z)) == doctest::Approx((real_t)-75.24),
  450. "Vector3 dot should return expected value.");
  451. }
  452. TEST_CASE("[Vector3] Finite number checks") {
  453. constexpr double infinite[] = { Math::NaN, Math::INF, -Math::INF };
  454. CHECK_MESSAGE(
  455. Vector3(0, 1, 2).is_finite(),
  456. "Vector3(0, 1, 2) should be finite");
  457. for (double x : infinite) {
  458. CHECK_FALSE_MESSAGE(
  459. Vector3(x, 1, 2).is_finite(),
  460. "Vector3 with one component infinite should not be finite.");
  461. CHECK_FALSE_MESSAGE(
  462. Vector3(0, x, 2).is_finite(),
  463. "Vector3 with one component infinite should not be finite.");
  464. CHECK_FALSE_MESSAGE(
  465. Vector3(0, 1, x).is_finite(),
  466. "Vector3 with one component infinite should not be finite.");
  467. }
  468. for (double x : infinite) {
  469. for (double y : infinite) {
  470. CHECK_FALSE_MESSAGE(
  471. Vector3(x, y, 2).is_finite(),
  472. "Vector3 with two components infinite should not be finite.");
  473. CHECK_FALSE_MESSAGE(
  474. Vector3(x, 1, y).is_finite(),
  475. "Vector3 with two components infinite should not be finite.");
  476. CHECK_FALSE_MESSAGE(
  477. Vector3(0, x, y).is_finite(),
  478. "Vector3 with two components infinite should not be finite.");
  479. }
  480. }
  481. for (double x : infinite) {
  482. for (double y : infinite) {
  483. for (double z : infinite) {
  484. CHECK_FALSE_MESSAGE(
  485. Vector3(x, y, z).is_finite(),
  486. "Vector3 with three components infinite should not be finite.");
  487. }
  488. }
  489. }
  490. }
  491. } // namespace TestVector3