From 6fef88d56f2dd6f643316d1545ca26b4acd70052 Mon Sep 17 00:00:00 2001 From: Max Lyon Date: Fri, 17 Feb 2017 18:20:46 +0100 Subject: [PATCH] fix halfedge indices in OpenMeshTrimeshCirculatorHalfedgeLoop CWAndCCWCheck --- src/Unittests/unittests_trimesh_circulator_halfedge_loop.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unittests/unittests_trimesh_circulator_halfedge_loop.cc b/src/Unittests/unittests_trimesh_circulator_halfedge_loop.cc index 14283856..a5e19488 100644 --- a/src/Unittests/unittests_trimesh_circulator_halfedge_loop.cc +++ b/src/Unittests/unittests_trimesh_circulator_halfedge_loop.cc @@ -287,7 +287,7 @@ TEST_F(OpenMeshTrimeshCirculatorHalfedgeLoop, CWAndCCWCheck) { */ - int indices[4] = {3, 8, 6, 3}; + int indices[4] = {3, 6, 8, 3}; int rev_indices[4]; std::reverse_copy(indices,indices+4,rev_indices);