Skip to content
Snippets Groups Projects
Commit 1bb5b97a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

remove printf

parent 84646015
No related branches found
No related tags found
No related merge requests found
...@@ -126,8 +126,7 @@ void drawContext::eventHandler(int event, float x, float y) ...@@ -126,8 +126,7 @@ void drawContext::eventHandler(int event, float x, float y)
break; break;
case 1: // finger move (translate) case 1: // finger move (translate)
// in this case x and y represent the current point // in this case x and y represent the current point
printf("currx=%g prevx=%g\n", _current.wnr[0],_previous.wnr[0]); _translate[0] += (_current.wnr[0] - _previous.wnr[0]);
_translate[0] += (_current.wnr[0] - _previous.wnr[0]);
_translate[1] += (_current.wnr[1] - _previous.wnr[1]); _translate[1] += (_current.wnr[1] - _previous.wnr[1]);
_translate[2] = 0.; _translate[2] = 0.;
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment