DefinitelyTyped/types/gl-vec2/dot.d.ts
2019-03-05 18:32:47 +11:00

7 lines
124 B
TypeScript

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