pub struct TrimmedSurface { /* private fields */ }Expand description
Another surface restricted to a sub-rectangle of its domain.
Implementations§
Source§impl TrimmedSurface
impl TrimmedSurface
Sourcepub fn new(
basis: SurfaceGeometry,
u: (f64, f64),
v: (f64, f64),
tol: Tolerances,
) -> OgeomResult<Self>
pub fn new( basis: SurfaceGeometry, u: (f64, f64), v: (f64, f64), tol: Tolerances, ) -> OgeomResult<Self>
Restrict basis to a sub-rectangle.
§Errors
OgeomError::Domain if either range is empty
or leaves the basis surface’s domain in a non-periodic direction.
Sourcepub const fn basis(&self) -> &SurfaceGeometry
pub const fn basis(&self) -> &SurfaceGeometry
The surface being trimmed.
Trait Implementations§
Source§impl Clone for TrimmedSurface
impl Clone for TrimmedSurface
Source§fn clone(&self) -> TrimmedSurface
fn clone(&self) -> TrimmedSurface
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 moreSource§impl Debug for TrimmedSurface
impl Debug for TrimmedSurface
Source§impl From<TrimmedSurface> for SurfaceGeometry
impl From<TrimmedSurface> for SurfaceGeometry
Source§fn from(s: TrimmedSurface) -> Self
fn from(s: TrimmedSurface) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TrimmedSurface
impl PartialEq for TrimmedSurface
Source§fn eq(&self, other: &TrimmedSurface) -> bool
fn eq(&self, other: &TrimmedSurface) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrimmedSurface
Source§impl Surface for TrimmedSurface
impl Surface for TrimmedSurface
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 TrimmedSurface
impl RefUnwindSafe for TrimmedSurface
impl Send for TrimmedSurface
impl Sync for TrimmedSurface
impl Unpin for TrimmedSurface
impl UnsafeUnpin for TrimmedSurface
impl UnwindSafe for TrimmedSurface
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.