pub struct Ellipse2 { /* private fields */ }Expand description
An ellipse in the plane.
Implementations§
Source§impl Ellipse2
impl Ellipse2
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>
An ellipse with the given radii, the major radius along frame’s x.
§Errors
OgeomError::Construction if a radius is
not finite and positive, or the minor exceeds the major.
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 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, in [0, 1).
Sourcepub fn transformed(&self, t: &Transform2, tol: Tolerances) -> OgeomResult<Self>
pub fn transformed(&self, t: &Transform2, tol: Tolerances) -> OgeomResult<Self>
Trait Implementations§
impl Copy for Ellipse2
impl StructuralPartialEq for Ellipse2
Auto Trait Implementations§
impl Freeze for Ellipse2
impl RefUnwindSafe for Ellipse2
impl Send for Ellipse2
impl Sync for Ellipse2
impl Unpin for Ellipse2
impl UnsafeUnpin for Ellipse2
impl UnwindSafe for Ellipse2
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.