pub trait Mixer {
type Output;
// Required method
fn mix(
&self,
roll: f32,
pitch: f32,
yaw: f32,
throttle: f32,
) -> Self::Output;
}Expand description
Common interface for different airframe geometries.