UNPKG

@phaserjs/phaser

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