mirror of
https://github.com/photonstorm/phaser
synced 2024-12-11 05:42:55 +00:00
9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
|
export default function (a, b) {
|
||
|
|
||
|
const dx = a[0] - b[0];
|
||
|
const dy = a[1] - b[1];
|
||
|
|
||
|
return Math.sqrt(dx * dx + dy * dy);
|
||
|
|
||
|
}
|