UNPKG

@phaserjs/phaser

Version:
6 lines (5 loc) 183 B
import { Vec4 } from "./Vec4"; export function Vec4Ceil(a, out = new Vec4()) { const { x, y, z, w } = a; return out.set(Math.ceil(x), Math.ceil(y), Math.ceil(z), Math.ceil(w)); }