pub trait LeewayModel {
// Required method
fn leeway(&self, motion: VesselMotion, wind: Wind) -> Result<Angle>;
}Expand description
Leeway model for a hull.
Leeway depends on windage, draught and speed, hence a port rather than a formula. Returns the angle between heading and water track.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".