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

7 lines
145 B
TypeScript

/**
* Set the components of a vec2 to the given values.
*/
declare function set(out: number[], x: number, y: number): number[];
export = set;