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

7 lines
137 B
TypeScript

/**
* Calculates the squared length of a vec2. Aliased as sqrLen.
*/
declare function sqrLen(a: number[]): number[];
export = sqrLen;