UNPKG

@phaserjs/phaser

Version:
4 lines (3 loc) 103 B
export function GetVec2ManhattanDistance(a, b) { return Math.abs(a.x - b.x) + Math.abs(a.y - b.y); }