UNPKG

@phaserjs/phaser

Version:
6 lines (5 loc) 177 B
import { Quaternion } from "./Quaternion"; export function QuatConjugate(a, out = new Quaternion()) { const { x, y, z, w } = a; return out.set(x * -1, y * -1, z * -1, w); }