UNPKG

@phaserjs/phaser

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