x=100;y=200; while(true) { t=findTouch(); if (t) { drag(t); } update(); } \drag(t) { while(!t.ended) { x+=t.vx; y+=t.vy; update(); } }