UNPKG

@phaserjs/phaser

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