From 288a1f265ca716135120695d4cda00237dc303b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 19 Jul 2016 18:09:56 +0200 Subject: [PATCH] Math: this shouldn't have been here. Fixes test failures on *all* platforms. Ha! --- src/Magnum/Math/Test/Matrix4Test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Magnum/Math/Test/Matrix4Test.cpp b/src/Magnum/Math/Test/Matrix4Test.cpp index 9bc4b44a2..7d1bf5ae5 100644 --- a/src/Magnum/Math/Test/Matrix4Test.cpp +++ b/src/Magnum/Math/Test/Matrix4Test.cpp @@ -562,7 +562,6 @@ void Matrix4Test::transformProjection() { Matrix4 a = Matrix4::perspectiveProjection({2.0f, 2.0f}, 1.0f, 100.0f); Vector3 v{0.0f, 0.0f, -100.0f}; - CORRADE_COMPARE(a.transformVector(v), Vector3(0.0f, 0.0f, 0.0f)); CORRADE_COMPARE(a.transformPoint(v), Vector3(0.0f, 0.0f, 1.0f)); }