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

7 lines
148 B
TypeScript

/**
* Creates a new vec2 initialized with the given values.
*/
declare function fromValues(x: number, y: number): number[];
export = fromValues;