#floats #lerp #float #function #inverse-lerp

float-lerp

浮点数的Lerp和InverseLerp函数

3个不稳定版本

0.2.0 2022年7月6日
0.1.1 2022年7月6日
0.1.0 2022年7月6日

#2857Rust模式

MIT/Apache

3KB

用于浮点数的Lerp和InverseLerp

lerp

使用0-1分数找到两个浮点数之间的值

// Returns 1.5 because 1.5 is 0.5 distance between 1.0 and 2.0
lerp(1.0, 2.0, 0.5) 

inverse_lerp

找到给定值在两个浮点数之间所占的分数

// Returns 0.5 because 1.5 is 0.5 of the distance between 1.0 and 2.0
inverse_lerp(1.0, 2.0, 1.5)

依赖项

~150KB