Crates.io | math-interpolate |
lib.rs | math-interpolate |
version | 0.1.0 |
source | src |
created_at | 2024-07-06 08:21:57.932046 |
updated_at | 2024-07-06 08:21:57.932046 |
description | Linear interpolation between two points to calculate the 3rd point. |
homepage | |
repository | https://github.com/alexiusacademia/math-interpolate |
max_upload_size | |
id | 1293847 |
size | 3,378 |
math-interpolate
is a Rust library that interpolates two points to calculate the third point in between them.
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);