DefinitelyTyped/types/gl-vec3/sqrLen.d.ts
2019-02-27 14:45:54 +11:00

7 lines
145 B
TypeScript

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