pub struct Hyperbola2 { /* private fields */ }Expand description
A hyperbola in the plane.
Implementations§
Source§impl Hyperbola2
impl Hyperbola2
Sourcepub fn new(
frame: Frame2,
major_radius: f64,
minor_radius: f64,
tol: Tolerances,
) -> OgeomResult<Self>
pub fn new( frame: Frame2, major_radius: f64, minor_radius: f64, tol: Tolerances, ) -> OgeomResult<Self>
A hyperbola with the given radii.
§Errors
OgeomError::Construction if a radius is
not finite and positive.
Sourcepub const fn major_radius(&self) -> f64
pub const fn major_radius(&self) -> f64
The major radius.
Sourcepub const fn minor_radius(&self) -> f64
pub const fn minor_radius(&self) -> f64
The minor radius.
Sourcepub fn eccentricity(&self) -> f64
pub fn eccentricity(&self) -> f64
The eccentricity, always greater than 1.
Trait Implementations§
Source§impl Clone for Hyperbola2
impl Clone for Hyperbola2
Source§fn clone(&self) -> Hyperbola2
fn clone(&self) -> Hyperbola2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Hyperbola2
Source§impl Debug for Hyperbola2
impl Debug for Hyperbola2
Source§impl PartialEq for Hyperbola2
impl PartialEq for Hyperbola2
Source§fn eq(&self, other: &Hyperbola2) -> bool
fn eq(&self, other: &Hyperbola2) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Hyperbola2
Auto Trait Implementations§
impl Freeze for Hyperbola2
impl RefUnwindSafe for Hyperbola2
impl Send for Hyperbola2
impl Sync for Hyperbola2
impl Unpin for Hyperbola2
impl UnsafeUnpin for Hyperbola2
impl UnwindSafe for Hyperbola2
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.