diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-04-24 11:16:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 11:16:20 +0200 |
commit | 5ae1e172da08a63b14635f5d06e32385901525e2 (patch) | |
tree | 9a9bd7f4dd90eada323f504b551e7630802fa494 /main | |
parent | 90ef1fd03d43d51f09b730dee107c0e407cf0703 (diff) | |
parent | 9a37ff1e34fe445a9168a7d91ae1df7d9928eb25 (diff) |
Merge pull request #8277 from tagcup/math_checks
Added various functions basic math classes. Also enabled math checks …
Diffstat (limited to 'main')
-rw-r--r-- | main/tests/test_math.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/test_math.cpp b/main/tests/test_math.cpp index cb75dcec13..95a1672e67 100644 --- a/main/tests/test_math.cpp +++ b/main/tests/test_math.cpp @@ -602,7 +602,7 @@ MainLoop *test() { print_line(q3); print_line("before v: " + v + " a: " + rtos(a)); - q.get_axis_and_angle(v, a); + q.get_axis_angle(v, a); print_line("after v: " + v + " a: " + rtos(a)); } |