UNPKG

@phaserjs/phaser

Version:
5 lines (4 loc) 138 B
export function GetVec4ManhattanLength(a) { const { x, y, z, w } = a; return Math.abs(x) + Math.abs(y) + Math.abs(z) + Math.abs(w); }