From e28ee6253ad09ab467e85fc10401a24503682051 Mon Sep 17 00:00:00 2001
From: Guillaume Damiand <guillaume.damiand@liris.cnrs.fr>
Date: Fri, 11 Jun 2021 08:09:42 +0200
Subject: [PATCH] Remove debug code

---
 src/draw_shds.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/draw_shds.h b/src/draw_shds.h
index 186d121..0b83c89 100644
--- a/src/draw_shds.h
+++ b/src/draw_shds.h
@@ -306,8 +306,6 @@ protected:
     {
       m_shds.move_to_next(m_cur_she);
       displayMessage(QString("Cur halfedge move by next."));
-      std::cout<<"Dart: "<<m_shds.point(m_cur_she)<<", "
-          <<m_shds.point(m_shds.opposite(m_cur_she))<<std::endl;
       compute_elements();
       redraw();
     }
@@ -315,16 +313,12 @@ protected:
     {
       m_shds.move_to_previous(m_cur_she);
       displayMessage(QString("Cur halfedge move by previous."));
-      std::cout<<"Dart: "<<m_shds.point(m_cur_she)<<", "
-              <<m_shds.point(m_shds.opposite(m_cur_she))<<std::endl;
       compute_elements();
       redraw();
     }
     else if ((e->key()==::Qt::Key_D) && (modifiers==::Qt::ShiftModifier))
     {
       m_shds.move_to_opposite(m_cur_she);
-      std::cout<<"Dart: "<<m_shds.point(m_cur_she)<<", "
-              <<m_shds.point(m_shds.opposite(m_cur_she))<<std::endl;
       displayMessage(QString("Cur halfedge move by opposite."));
       compute_elements();
       redraw();
-- 
GitLab