pub struct Sphere { /* private fields */ }Expand description
A sphere.
Implementations§
Source§impl Sphere
impl Sphere
Sourcepub fn new(frame: Frame, radius: f64, tol: Tolerances) -> OgeomResult<Self>
pub fn new(frame: Frame, radius: f64, tol: Tolerances) -> OgeomResult<Self>
A sphere of radius centred on frame’s origin.
§Errors
OgeomError::Construction if radius is
not finite and positive.
Sourcepub fn centred(centre: Point, radius: f64, tol: Tolerances) -> OgeomResult<Self>
pub fn centred(centre: Point, radius: f64, tol: Tolerances) -> OgeomResult<Self>
A sphere from a centre and a radius, parameterized arbitrarily but deterministically.
§Errors
As Sphere::new.
Sourcepub fn signed_distance_to(&self, p: Point) -> f64
pub fn signed_distance_to(&self, p: Point) -> f64
The signed distance from p, negative inside.
Sourcepub fn distance_to(&self, p: Point) -> f64
pub fn distance_to(&self, p: Point) -> f64
The distance from p to the surface.
Sourcepub fn contains(&self, p: Point, tol: Tolerances) -> bool
pub fn contains(&self, p: Point, tol: Tolerances) -> bool
Whether p lies on the surface within tol.confusion().
Sourcepub fn normal_at(&self, p: Point, tol: Tolerances) -> OgeomResult<Direction>
pub fn normal_at(&self, p: Point, tol: Tolerances) -> OgeomResult<Direction>
The outward unit normal at the point nearest p.
§Errors
OgeomError::Construction if p is the
centre, where no nearest point is unique.
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 Sphere
impl StructuralPartialEq for Sphere
Auto Trait Implementations§
impl Freeze for Sphere
impl RefUnwindSafe for Sphere
impl Send for Sphere
impl Sync for Sphere
impl Unpin for Sphere
impl UnsafeUnpin for Sphere
impl UnwindSafe for Sphere
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.