Skip to content
#

opengis

Here are 3 public repositories matching this topic...

Language: All
Filter by language
peterstace
peterstace commented Apr 14, 2022

A LERP function is defined here: https://github.com/peterstace/simplefeatures/blob/master/geom/alg_linear_interpolation.go#L55

func lerp(a, b, ratio float64) float64 {
	return a + ratio*(b-a)
}

I ran into the following article, which shares some interesting insight into ways that LERP functions can go wrong: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0811r2.html The

good first issue improve

Improve this page

Add a description, image, and links to the opengis topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the opengis topic, visit your repo's landing page and select "manage topics."

Learn more