From 47fa924f2b89c946d473ecd49266e1af6da65a63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 19 Aug 2013 18:44:01 +0200 Subject: [PATCH] DebugTools: orthogonal, not parallel. Another brainfart. --- src/DebugTools/Test/ForceRendererTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DebugTools/Test/ForceRendererTest.cpp b/src/DebugTools/Test/ForceRendererTest.cpp index e02d3ce7d..7d1a733ff 100644 --- a/src/DebugTools/Test/ForceRendererTest.cpp +++ b/src/DebugTools/Test/ForceRendererTest.cpp @@ -81,7 +81,7 @@ void ForceRendererTest::arbitrary2D() { /* All vectors have the same length */ CORRADE_COMPARE(m.up().length(), force.length()); - /* All vectors are parallel */ + /* All vectors are orthogonal */ CORRADE_COMPARE(Vector2::dot(m.right(), m.up()), 0.0f); } @@ -112,7 +112,7 @@ void ForceRendererTest::arbitrary3D() { CORRADE_COMPARE(m.up().length(), force.length()); CORRADE_COMPARE(m.backward().length(), force.length()); - /* All vectors are parallel */ + /* All vectors are orthogonal */ CORRADE_COMPARE(Vector3::dot(m.right(), m.up()), 0.0f); CORRADE_COMPARE(Vector3::dot(m.right(), m.backward()), 0.0f); CORRADE_COMPARE(Vector3::dot(m.up(), m.backward()), 0.0f);