You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
284 B

4 months ago
/**
* normalize t [a, b] 线 [0, 1]
* @param a t
* @param b t
* @returns normalize
*/
export declare function createNormalize(a: number, b: number): (t: number) => number;