pub struct LambertSolution {
pub v1: [f64; 3],
pub v2: [f64; 3],
}Expand description
Velocity solution returned by lambert.
Fields§
§v1: [f64; 3]Velocity vector at the departure point (same units as position / time).
v2: [f64; 3]Velocity vector at the arrival point (same units as position / time).
Trait Implementations§
Source§impl Clone for LambertSolution
impl Clone for LambertSolution
Source§fn clone(&self) -> LambertSolution
fn clone(&self) -> LambertSolution
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LambertSolution
impl Debug for LambertSolution
Source§impl PartialEq for LambertSolution
impl PartialEq for LambertSolution
impl StructuralPartialEq for LambertSolution
Auto Trait Implementations§
impl Freeze for LambertSolution
impl RefUnwindSafe for LambertSolution
impl Send for LambertSolution
impl Sync for LambertSolution
impl Unpin for LambertSolution
impl UnsafeUnpin for LambertSolution
impl UnwindSafe for LambertSolution
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