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

7 lines
132 B
TypeScript

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