pub struct Hyperbola { /* private fields */ }Expand description
A hyperbola in space.
Only the branch on the positive x side of its frame is described; the
other branch is the same hyperbola with the frame’s x reversed.
Implementations§
Source§impl Hyperbola
impl Hyperbola
Sourcepub fn new(
frame: Frame,
major_radius: f64,
minor_radius: f64,
tol: Tolerances,
) -> OgeomResult<Self>
pub fn new( frame: Frame, major_radius: f64, minor_radius: f64, tol: Tolerances, ) -> OgeomResult<Self>
A hyperbola with the given radii in the xy plane of frame.
§Errors
OgeomError::Construction if either
radius is not finite and positive. Unlike an ellipse, the minor radius
may exceed the major.
Sourcepub const fn centre(&self) -> Point
pub const fn centre(&self) -> Point
The centre: the midpoint of the two vertices, not a point on the curve.
Sourcepub const fn major_radius(&self) -> f64
pub const fn major_radius(&self) -> f64
The major radius: centre to vertex.
Sourcepub const fn minor_radius(&self) -> f64
pub const fn minor_radius(&self) -> f64
The minor radius, governing how fast the branches open.
Sourcepub fn focal_distance(&self) -> f64
pub fn focal_distance(&self) -> f64
The distance from the centre to either focus.
Sourcepub fn eccentricity(&self) -> f64
pub fn eccentricity(&self) -> f64
The eccentricity, always greater than 1.
Sourcepub fn transformed(&self, t: &Transform, tol: Tolerances) -> OgeomResult<Self>
pub fn transformed(&self, t: &Transform, tol: Tolerances) -> OgeomResult<Self>
Trait Implementations§
impl Copy for Hyperbola
impl StructuralPartialEq for Hyperbola
Auto Trait Implementations§
impl Freeze for Hyperbola
impl RefUnwindSafe for Hyperbola
impl Send for Hyperbola
impl Sync for Hyperbola
impl Unpin for Hyperbola
impl UnsafeUnpin for Hyperbola
impl UnwindSafe for Hyperbola
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.