manifold/common/util/math.ts

7 lines
201 B
TypeScript
Raw Normal View History

export const logInterpolation = (min: number, max: number, value: number) => {
if (value <= min) return 0
if (value >= max) return 1
return Math.log(value - min + 1) / Math.log(max - min + 1)
}