aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/spaceexplorer/content/helpers.js
blob: c38c4c0eed768336a141e2323e2e953ba2c6d044 (plain)
1
2
3
4
5
6
7
8
function intersects(item, x, y, e){
    return x+e >= item.x && x-e <= item.x + item.width && y+e >= item.y && y-e <= item.y + item.height;
}

function direction(x1, y1, x2, y2){
    return Math.atan2(y2-y1, x2-x1) * (180/Math.PI);
}