UNPKG

@phaserjs/phaser

Version:
6 lines (5 loc) 178 B
import { Vec3 } from "../vec3/Vec3"; export function Mat4GetTranslation(matrix, out = new Vec3()) { const data = matrix.data; return out.set(data[12], data[13], data[14]); }