pub struct Extrema<A, B> {
pub approaches: Vec<Approach<A, B>>,
pub family: bool,
}Expand description
Every stationary approach found, nearest first.
Fields§
§approaches: Vec<Approach<A, B>>Stationary approaches, sorted by distance. Nearest approaches first; stationary farthest points, where they exist in the interior, are at the back of the same list.
family: boolWhether the nearest distance is attained along a locus rather than at an isolated point: parallel lines, concentric circles, coaxial quadrics. When set, the nearest approaches are representatives of the family, not the family.
Implementations§
Trait Implementations§
Source§impl<A: PartialEq, B: PartialEq> PartialEq for Extrema<A, B>
impl<A: PartialEq, B: PartialEq> PartialEq for Extrema<A, B>
impl<A: PartialEq, B: PartialEq> StructuralPartialEq for Extrema<A, B>
Auto Trait Implementations§
impl<A, B> Freeze for Extrema<A, B>
impl<A, B> RefUnwindSafe for Extrema<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for Extrema<A, B>
impl<A, B> Sync for Extrema<A, B>
impl<A, B> Unpin for Extrema<A, B>
impl<A, B> UnsafeUnpin for Extrema<A, B>
impl<A, B> UnwindSafe for Extrema<A, B>where
A: UnwindSafe,
B: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> Scalar for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.