我有一个小问题,希望很容易解决。在下面第二行的代码中,我没有使用and坐标,path1.moveTo...
而是使用and的第一个值会更好,但我不知道怎么做?touchDownX1
touchDownY1
X
Y
touchPoints[0]
// Path 1
path1.moveTo(touchDownX1, touchDownY1);
for(Point point: touchPoints[0]) {
path1.lineTo(point.x, point.y);
canvas.drawPath(path1, paint1);
}