nyx_space::md::trajectory

Trait Interpolatable

Source
pub trait Interpolatable: State
where Self: Sized, DefaultAllocator: Allocator<Self::Size> + Allocator<Self::Size, Self::Size> + Allocator<Self::VecLength>,
{ // Required methods fn interpolate( self, epoch: Epoch, states: &[Self], ) -> Result<Self, InterpolationError>; fn frame(&self) -> Frame; fn set_frame(&mut self, frame: Frame); fn export_params() -> Vec<StateParameter>; }
Expand description

States that can be interpolated should implement this trait.

Required Methods§

Source

fn interpolate( self, epoch: Epoch, states: &[Self], ) -> Result<Self, InterpolationError>

Interpolates a new state at the provided epochs given a slice of states.

Source

fn frame(&self) -> Frame

Returns the frame of this state

Source

fn set_frame(&mut self, frame: Frame)

Sets the frame of this state

Source

fn export_params() -> Vec<StateParameter>

List of state parameters that will be exported to a trajectory file in addition to the epoch (provided in this different formats).

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.

Implementors§