Struct ddtri::DistanceDifferences
source · pub struct DistanceDifferences<F> {
pub ddto0to1: F,
pub ddto0to2: F,
}Expand description
The distance differences.
If the point we want to locate is (x,y), and the distance from our point
(x,y) to beacon0 is d0, to beacon1 d1, and to beacon2 d2, then:
ddto0to1 == d0 - d1 and ddto0to2 == d0 - d2.
Fields§
§ddto0to1: F§ddto0to2: FAuto Trait Implementations§
impl<F> Freeze for DistanceDifferences<F>where
F: Freeze,
impl<F> RefUnwindSafe for DistanceDifferences<F>where
F: RefUnwindSafe,
impl<F> Send for DistanceDifferences<F>where
F: Send,
impl<F> Sync for DistanceDifferences<F>where
F: Sync,
impl<F> Unpin for DistanceDifferences<F>where
F: Unpin,
impl<F> UnwindSafe for DistanceDifferences<F>where
F: UnwindSafe,
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