UNPKG

@phaserjs/phaser

Version:
5 lines (4 loc) 105 B
export function GetVec3Length(a) { const { x, y, z } = a; return Math.sqrt(x * x + y * y + z * z); }