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

7 lines
124 B
TypeScript

/**
* Calculates the dot product of two vec2's.
*/
declare function dot(a: number[], b: number[]): number;
export = dot;