pub struct SphereSurface { /* private fields */ }Expand description
A sphere, parameterized by (longitude, latitude).
Implementations§
Trait Implementations§
Source§impl Clone for SphereSurface
impl Clone for SphereSurface
Source§fn clone(&self) -> SphereSurface
fn clone(&self) -> SphereSurface
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 SphereSurface
Source§impl Debug for SphereSurface
impl Debug for SphereSurface
Source§impl From<SphereSurface> for SurfaceGeometry
impl From<SphereSurface> for SurfaceGeometry
Source§fn from(s: SphereSurface) -> Self
fn from(s: SphereSurface) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SphereSurface
impl PartialEq for SphereSurface
Source§fn eq(&self, other: &SphereSurface) -> bool
fn eq(&self, other: &SphereSurface) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SphereSurface
Source§impl Surface for SphereSurface
impl Surface for SphereSurface
Source§fn point_at(&self, u: f64, v: f64, tol: Tolerances) -> OgeomResult<Point>
fn point_at(&self, u: f64, v: f64, tol: Tolerances) -> OgeomResult<Point>
The point at
(u, v). Read moreSource§fn d1_at(
&self,
u: f64,
v: f64,
tol: Tolerances,
) -> OgeomResult<(Vector, Vector)>
fn d1_at( &self, u: f64, v: f64, tol: Tolerances, ) -> OgeomResult<(Vector, Vector)>
The two first derivatives at
(u, v). Read moreSource§fn kind(&self) -> SurfaceKind
fn kind(&self) -> SurfaceKind
What kind of surface this is.
Source§fn continuity(&self) -> Continuity
fn continuity(&self) -> Continuity
How smooth the surface is across its domain.
Source§fn is_closed_u(&self, _tol: Tolerances) -> bool
fn is_closed_u(&self, _tol: Tolerances) -> bool
Whether the surface closes on itself along
u.Source§fn is_closed_v(&self, _tol: Tolerances) -> bool
fn is_closed_v(&self, _tol: Tolerances) -> bool
Whether the surface closes on itself along
v.Source§fn is_periodic_u(&self) -> bool
fn is_periodic_u(&self) -> bool
Whether
u repeats past the domain.Source§fn is_periodic_v(&self) -> bool
fn is_periodic_v(&self) -> bool
Whether
v repeats past the domain.Source§fn jet_at(&self, u: f64, v: f64, tol: Tolerances) -> OgeomResult<SurfaceJet>
fn jet_at(&self, u: f64, v: f64, tol: Tolerances) -> OgeomResult<SurfaceJet>
The point and every derivative through second order, together. Read more
Source§fn curvature_at(
&self,
u: f64,
v: f64,
tol: Tolerances,
) -> OgeomResult<SurfaceCurvature>
fn curvature_at( &self, u: f64, v: f64, tol: Tolerances, ) -> OgeomResult<SurfaceCurvature>
The principal curvatures and directions at
(u, v). Read moreSource§fn is_degenerate_at(&self, u: f64, v: f64, tol: Tolerances) -> OgeomResult<bool>
fn is_degenerate_at(&self, u: f64, v: f64, tol: Tolerances) -> OgeomResult<bool>
Whether the surface degenerates at
(u, v). Read moreAuto Trait Implementations§
impl Freeze for SphereSurface
impl RefUnwindSafe for SphereSurface
impl Send for SphereSurface
impl Sync for SphereSurface
impl Unpin for SphereSurface
impl UnsafeUnpin for SphereSurface
impl UnwindSafe for SphereSurface
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.