UNPKG

@phaserjs/phaser

Version:
5 lines (4 loc) 125 B
import { Vec4 } from "./Vec4"; export function Vec4Negate(a, out = new Vec4()) { return out.set(-a.x, -a.y, -a.z, -a.w); }