pub trait ReprojectPoints {
// Required method
fn map_points<F>(&mut self, f: &mut F) -> Result<(), CrsError>
where F: FnMut(f64, f64) -> Result<(f64, f64), CrsError>;
}Expand description
A geometry whose points can be enumerated and rewritten — the hook reprojection needs.
Implemented for the kernel’s mutable areal / linear / point model
types. The single method visits every point, letting the caller
replace its (x, y).
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".