Can someone explain me this approach?
private void touch_move(float x, float y) {
...
mPath.quadTo(mX, mY, (x + mX)/2, (y + mY)/2);
...
}
For the full code: Please see the first answer here
Why aren't the new x and y taken for the third and fourth argument?
Why this arithmetic? What is computed there?