use super::LensParameters;
pub struct DistortionCorrector {
#[allow(dead_code)]
params: LensParameters,
}
impl DistortionCorrector {
#[must_use]
pub fn new(params: LensParameters) -> Self {
Self { params }
}
#[must_use]
pub fn correct(&self, x: f64, y: f64) -> (f64, f64) {
(x, y)
}
}