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

7 lines
142 B
TypeScript

/**
* Generates a random vector with the given scale.
*/
declare function random(out: number[], scale: number): number[];
export = random;