inverseLerp
#Math
lerp
の逆関数
linearstep
の
clamp
しない版
コード例
code:js
function inverseLerp(a, b, t) {
return (t - a) / (b - a);
}
登場作品
Unity
🔗
Three.js
🔗