pub struct PlaneSurface { /* private fields */ }Expand description
A plane, parameterized by its frame’s x and y axes.
Implementations§
Source§impl PlaneSurface
impl PlaneSurface
Trait Implementations§
Source§impl Clone for PlaneSurface
impl Clone for PlaneSurface
Source§fn clone(&self) -> PlaneSurface
fn clone(&self) -> PlaneSurface
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 PlaneSurface
Source§impl Debug for PlaneSurface
impl Debug for PlaneSurface
Source§impl From<PlaneSurface> for SurfaceGeometry
impl From<PlaneSurface> for SurfaceGeometry
Source§fn from(s: PlaneSurface) -> Self
fn from(s: PlaneSurface) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlaneSurface
impl PartialEq for PlaneSurface
Source§fn eq(&self, other: &PlaneSurface) -> bool
fn eq(&self, other: &PlaneSurface) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaneSurface
Source§impl Surface for PlaneSurface
impl Surface for PlaneSurface
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 d2_at(
&self,
u: f64,
v: f64,
_tol: Tolerances,
) -> OgeomResult<(Vector, Vector, Vector)>
fn d2_at( &self, u: f64, v: f64, _tol: Tolerances, ) -> OgeomResult<(Vector, Vector, Vector)>
Source§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 PlaneSurface
impl RefUnwindSafe for PlaneSurface
impl Send for PlaneSurface
impl Sync for PlaneSurface
impl Unpin for PlaneSurface
impl UnsafeUnpin for PlaneSurface
impl UnwindSafe for PlaneSurface
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.