Type Alias nyx_space::md::ScTraj

source ·
pub type ScTraj = Traj<Spacecraft>;

Aliased Type§

struct ScTraj {
    pub name: Option<String>,
    pub states: Vec<Spacecraft>,
}

Fields§

§name: Option<String>

Optionally name this trajectory

§states: Vec<Spacecraft>

We use a vector because we know that the states are produced in a chronological manner (the direction does not matter).