UNPKG

@phaserjs/phaser

Version:
6 lines (5 loc) 198 B
import { Matrix4 } from "./Matrix4"; export function Mat4FromTranslation(vec3, out = new Matrix4()) { const { x, y, z } = vec3; return out.set(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1); }