You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
323 B
13 lines
323 B
1 year ago
|
import sourceEvent from "./sourceEvent";
|
||
|
import point from "./point";
|
||
|
|
||
|
export default function(node, touches) {
|
||
|
if (touches == null) touches = sourceEvent().touches;
|
||
|
|
||
|
for (var i = 0, n = touches ? touches.length : 0, points = new Array(n); i < n; ++i) {
|
||
|
points[i] = point(node, touches[i]);
|
||
|
}
|
||
|
|
||
|
return points;
|
||
|
}
|