summaryrefslogtreecommitdiff
path: root/src/tests/test_maths.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_maths.cc')
-rw-r--r--src/tests/test_maths.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/test_maths.cc b/src/tests/test_maths.cc
index 8eb7ec6..0a3b9e6 100644
--- a/src/tests/test_maths.cc
+++ b/src/tests/test_maths.cc
@@ -194,7 +194,8 @@ void test_matrix_inversion() {
check_identity(s * s_inv);
// 4. Rotation
- mat4 r = mat4::rotate({1.0f, 2.0f, 3.0f}, 0.785f); // 45 deg around complex axis
+ mat4 r =
+ mat4::rotate({1.0f, 2.0f, 3.0f}, 0.785f); // 45 deg around complex axis
mat4 r_inv = r.inverse();
check_identity(r * r_inv);