diff options
author | Sven Göthel <[email protected]> | 2024-04-13 17:59:55 +0200 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-04-13 17:59:55 +0200 |
commit | 658901dcae9b5af0ef1df74b90b37fbae935c84b (patch) | |
tree | 55c1bb3e6ace07f14469b54736c6401804517392 | |
parent | ad15f9500c334bca2c4f78d58705f84e6a424097 (diff) |
math: Fix vec3f::angle() [add const]; test_math_vec: Add Vec3f angle tests via acos(dot(..))
-rw-r--r-- | include/jau/math/vec3f.hpp | 2 | ||||
-rw-r--r-- | test/test_math_vec.cpp | 66 |
2 files changed, 67 insertions, 1 deletions
diff --git a/include/jau/math/vec3f.hpp b/include/jau/math/vec3f.hpp index e9823a2..8c96e15 100644 --- a/include/jau/math/vec3f.hpp +++ b/include/jau/math/vec3f.hpp @@ -252,7 +252,7 @@ namespace jau::math { * @param vec1 vector 1 * @param vec2 vector 2 */ - float angle(const Vec3f& o) noexcept { + float angle(const Vec3f& o) const noexcept { return std::acos( cos_angle(o) ); } diff --git a/test/test_math_vec.cpp b/test/test_math_vec.cpp index 010c9ba..02f4852 100644 --- a/test/test_math_vec.cpp +++ b/test/test_math_vec.cpp @@ -65,3 +65,69 @@ TEST_CASE( "Math Vec Normalize Test 01", "[vec][linear_algebra][math]" ) { REQUIRE( 1 < v1.length() ); REQUIRE( true == jau::equals( 1.0f, v1.normalize().length() ) ); } + +TEST_CASE( "Math Vec Angle Test 02", "[vec][linear_algebra][math]" ) { + // test 0 deg + { + std::cout << "Test 0-deg, UNIT_X vecs" << std::endl; + Vec3f v0(1, 0, 0); + Vec3f v1(1, 0, 0); + std::cout << "v0 " << v0 << std::endl; + std::cout << "v1 " << v1 << std::endl; + + const float a0_v0_v1 = v0.angle(v1); + std::cout << "a0(v0, v1) = " << a0_v0_v1 << " rad, " << jau::rad_to_adeg(a0_v0_v1) << " deg, via dot, acos" << std::endl; + REQUIRE(true == jau::equals(0.0f, a0_v0_v1)); + } + // test 0 deg + { + std::cout << "Test 0-deg, free vecs" << std::endl; + const Vec3f v0(0.14f, 0.07f, 0.0f); + const Vec3f v1(0.33f, 0.07f, 0.0f); + const Vec3f v0_1 = v1 - v0; + std::cout << "v0 " << v0 << std::endl; + std::cout << "v1 " << v1 << std::endl; + std::cout << "v0_1 " << v0_1 << std::endl; + + const float a0_x_v0_1 = Vec3f(1, 0, 0).angle(v0_1); + std::cout << "a0(X, v0_1) = " << a0_x_v0_1 << " rad, " << jau::rad_to_adeg(a0_x_v0_1) << " deg, via dot, acos" << std::endl; + REQUIRE(true == jau::equals(0.0f, a0_x_v0_1)); + } + // test 180 deg + { + std::cout << "Test 180-deg, free vecs" << std::endl; + const Vec3f v0(0.33f, 0.07f, 0.0f); + const Vec3f v1(0.14f, 0.07f, 0.0f); + const Vec3f v0_1 = v1 - v0; + std::cout << "v0 " << v0 << std::endl; + std::cout << "v1 " << v1 << std::endl; + std::cout << "v0_1 " << v0_1 << std::endl; + + const float a0_x_v0_1 = Vec3f(1, 0, 0).angle(v0_1); + std::cout << "a0(X, v0_1) = " << a0_x_v0_1 << " rad, " << jau::rad_to_adeg(a0_x_v0_1) << " deg, via dot, acos" << std::endl; + REQUIRE(true == jau::equals((float)M_PI, a0_x_v0_1)); + } + // test 90 deg + { + std::cout << "Test 90-deg, UNIT_X, UNIT_Y vecs" << std::endl; + const Vec3f v0(1, 0, 0); + const Vec3f v1(0, 1, 0); + std::cout << "v0 " << v0 << std::endl; + std::cout << "v1 " << v1 << std::endl; + const float a0_v0_v1 = v0.angle(v1); + std::cout << "a0(v0, v1) = " << a0_v0_v1 << " rad, " << jau::rad_to_adeg(a0_v0_v1) << " deg, via dot, acos" << std::endl; + REQUIRE(true == jau::equals((float)M_PI_2, a0_v0_v1)); + } + // test 180 deg + { + std::cout << "Test 180-deg, UNIT_X, UNIT_X_NEG vecs" << std::endl; + const Vec3f v0(1, 0, 0); + const Vec3f v1(-1, 0, 0); + std::cout << "v0 " << v0 << std::endl; + std::cout << "v1 " << v1 << std::endl; + const float a0_v0_v1 = v0.angle(v1); + std::cout << "a0(v0, v1) = " << a0_v0_v1 << " rad, " << jau::rad_to_adeg(a0_v0_v1) << " deg, via dot, acos" << std::endl; + REQUIRE(true == jau::equals((float)M_PI, a0_v0_v1)); + } + +} |