mirror of
https://github.com/photonstorm/phaser
synced 2024-11-28 23:51:31 +00:00
9 lines
124 B
JavaScript
9 lines
124 B
JavaScript
|
export default function (a, b) {
|
||
|
|
||
|
const dx = a[0] - b[0];
|
||
|
const dy = a[1] - b[1];
|
||
|
|
||
|
return dx * dx + dy * dy;
|
||
|
|
||
|
}
|