summaryrefslogtreecommitdiff
path: root/src/tests/test_maths.cc
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-02 23:26:16 +0100
committerskal <pascal.massimino@gmail.com>2026-02-02 23:26:16 +0100
commit2519948f03a8fc467614bdfbdf5bd3e065dbcb5e (patch)
tree19d6808bb6dd6bd0a89799885c1cce5b64c02f1b /src/tests/test_maths.cc
parentb52200dbfe27355a46ab25dd87cd82799df9c84f (diff)
feat: Complete audio tracker system integration and tests
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);