pub enum Direction {
Prograde,
Retrograde,
}Expand description
Transfer direction for Lambert’s problem.
Prograde means the transfer orbit has positive angular momentum aligned
with r1 × r2. Retrograde uses the supplementary transfer angle
(> 180°), with angular momentum aligned with r2 × r1.
Variants§
Prograde
Transfer angle ∈ (0°, 180°); angular momentum parallel to r1 × r2.
Retrograde
Transfer angle ∈ (180°, 360°); angular momentum parallel to r2 × r1.
Trait Implementations§
impl Copy for Direction
impl Eq for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnsafeUnpin for Direction
impl UnwindSafe for Direction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more