DefinitelyTyped/types/gl-vec3/set.d.ts
2019-02-27 14:45:54 +11:00

7 lines
164 B
TypeScript

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