pub trait MotionModel3D<R>: Clone{
// Required method
fn calc_for_dt(&self, dt: R) -> MotionModel3DFixedDt<R>;
}Required Methods§
Sourcefn calc_for_dt(&self, dt: R) -> MotionModel3DFixedDt<R>
fn calc_for_dt(&self, dt: R) -> MotionModel3DFixedDt<R>
For a given dt, create a new instance of the motion model.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.