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

7 lines
126 B
TypeScript

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