UNPKG

@phaserjs/phaser

Version:
7 lines (6 loc) 197 B
import { Vec2 } from "./Vec2"; export function Vec2Min(a, b, out = new Vec2()) { const { x: ax, y: ay } = a; const { x: bx, y: by } = b; return out.set(Math.min(ax, bx), Math.min(ay, by)); }