UNPKG

@phaserjs/phaser

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