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

7 lines
179 B
TypeScript

/**
* Limit the magnitude of this vector to the value used for the max parameter.
*/
declare function limit(out: number[], a: number[], max: number): number[];
export = limit;