UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

10 lines 339 B
/// <reference types="gl-matrix/index.js" /> /** * executes following formula: v1 - v0*( dot(v0,v1) ) * @param {vec3} out * @param {vec3} v0 * @param {vec3} v1 */ export function v3_scale_dot_sub_normalize(out: vec3, v0: vec3, v1: vec3): void; import { vec3 } from "gl-matrix"; //# sourceMappingURL=v3_scale_dot_sub_normalize.d.ts.map