diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-11-01 08:11:09 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-11-01 09:28:12 -0500 |
commit | 83634119d42595498e42685556a577c12145e20b (patch) | |
tree | bdd670ec6732d4cf479f3185806331b16f3f6fc8 /tests/test_validate_testing.h | |
parent | e6751549cf7247965d1744b8c464f5e901006f21 (diff) | |
download | redot-engine-83634119d42595498e42685556a577c12145e20b.tar.gz |
Replace Quaternion Euler constructor with `from_euler` method
Diffstat (limited to 'tests/test_validate_testing.h')
-rw-r--r-- | tests/test_validate_testing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_validate_testing.h b/tests/test_validate_testing.h index 1471a952cd..41185a7d16 100644 --- a/tests/test_validate_testing.h +++ b/tests/test_validate_testing.h @@ -86,7 +86,7 @@ TEST_SUITE("Validate tests") { Plane plane(Vector3(1, 1, 1), 1.0); INFO(plane); - Quaternion quat(Vector3(0.5, 1.0, 2.0)); + Quaternion quat = Quaternion::from_euler(Vector3(0.5, 1.0, 2.0)); INFO(quat); AABB aabb(Vector3(), Vector3(100, 100, 100)); |