phaser/wip/archived/vec2/DistanceSq.js

9 lines
124 B
JavaScript
Raw Normal View History

2017-02-04 04:41:17 +00:00
export default function (a, b) {
const dx = a[0] - b[0];
const dy = a[1] - b[1];
return dx * dx + dy * dy;
}