1 unstable release
0.1.0 | Jul 6, 2024 |
---|
#354 in Science
22 downloads per month
3KB
math-interpolate
math-interpolate
is a Rust library that interpolates two points to calculate the third point in between them.
Usage
let p1 = Point::new(0.0, 0.0); // x, y is 0.0, 0.0
let p2 = Point::new(5.0, 5.0);
let x: f32 = 3.0;
let result = interpolate(p1, p2, x);
println!("The value of y is {}.", result);