DefinitelyTyped/types/gl-vec4/squaredLength.d.ts
2019-03-01 15:57:24 +11:00

7 lines
136 B
TypeScript

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