pub struct Geodesic {
pub start: Vec<f64>,
pub end: Vec<f64>,
pub n_steps: usize,
}Expand description
Geodesic on a Riemannian manifold (approximated by straight lines for flat space).
Fields§
§start: Vec<f64>§end: Vec<f64>§n_steps: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Geodesic
impl RefUnwindSafe for Geodesic
impl Send for Geodesic
impl Sync for Geodesic
impl Unpin for Geodesic
impl UnsafeUnpin for Geodesic
impl UnwindSafe for Geodesic
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