4 Star 25 Fork 17

编程语言算法集 / Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
lerp.go 251 Bytes
一键复制 编辑 原始数据 按行查看 历史
safesuk 提交于 2022-10-07 18:50 . feat: add lerp (#545)
package math
// Lerp or Linear interpolation
// This function will return new value in 't' percentage between 'v0' and 'v1'
func Lerp(v0, v1, t float64) float64 {
// see: https://en.wikipedia.org/wiki/Linear_interpolation
return (1-t)*v0 + t*v1
}
Go
1
https://gitee.com/TheAlgorithms/Go.git
git@gitee.com:TheAlgorithms/Go.git
TheAlgorithms
Go
Go
master

搜索帮助