UNPKG

@phaserjs/phaser

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