DefinitelyTyped/types/gl-vec2/dot.d.ts

7 lines
124 B
TypeScript
Raw Permalink Normal View History

2019-03-05 06:15:20 +00:00
/**
* Calculates the dot product of two vec2's.
*/
declare function dot(a: number[], b: number[]): number;
export = dot;