UNPKG

@phaserjs/phaser

Version:
5 lines (4 loc) 143 B
import { Vec3 } from "./Vec3"; export function Vec3Abs(a, out = new Vec3()) { return out.set(Math.abs(a.x), Math.abs(a.y), Math.abs(a.z)); }