function dragSelected(p, ev, hitResult, tool) {
if (hitResult.type === "fill") {
let mainMove;
if (ev.modifiers.shift) {
if (tool.dragDirection === "x") {
mainMove = new p.Point(ev.delta.x, 0);
} else if (tool.dragDirection === "y") {
mainMove = new p.Point(0, ev.delta.y);
} else {
if (Math.abs(ev.delta.x) > Math.abs(ev.delta.y)) {
tool.dragDirection = "x";
mainMove = new p.Point(ev.delta.x, 0);
} else {
tool.dragDirection = "y";
mainMove = new p.Point(0, ev.delta.y);
}
}
} else {
mainMove = ev.delta;
}
selection.content.forEach((c) => {
c.position = c.position.add(mainMove);
var h_name = c.name.replace("main", "hidden");
const hiddenItem = hidKids(p)[h_name];
const hiddenMove = mainMove.divide(canvasValues.gridScale);
hiddenItem.position = hiddenItem.position.add(hiddenMove);
});
tmpGrp(p).removeChildren();
Inv.recalcIntersections(p);
highlightPointList(Inv.intersections, p);
document.dispatchEvent(new CustomEvent("itemChange"));
}
}