Files
DefinitelyTyped/types/gl-vec4/negate.d.ts
T

7 lines
132 B
TypeScript

/**
* Negates the components of a vec4.
*/
declare function negate(out: number[], a: number[]): number[];
export default negate;