#[repr(i16)]pub enum PolyfaceSmoothType {
None = 0,
Quadratic = 5,
Cubic = 6,
Bezier = 8,
}Expand description
Smooth surface type.
Variants§
None = 0
No smooth surface.
Quadratic = 5
Quadratic B-spline surface.
Cubic = 6
Cubic B-spline surface.
Bezier = 8
Bezier surface.
Trait Implementations§
Source§impl Clone for PolyfaceSmoothType
impl Clone for PolyfaceSmoothType
Source§fn clone(&self) -> PolyfaceSmoothType
fn clone(&self) -> PolyfaceSmoothType
Returns a duplicate of the value. Read more
1.0.0 · 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 PolyfaceSmoothType
impl Debug for PolyfaceSmoothType
Source§impl Default for PolyfaceSmoothType
impl Default for PolyfaceSmoothType
Source§fn default() -> PolyfaceSmoothType
fn default() -> PolyfaceSmoothType
Returns the “default value” for a type. Read more
Source§impl From<i16> for PolyfaceSmoothType
impl From<i16> for PolyfaceSmoothType
Source§impl PartialEq for PolyfaceSmoothType
impl PartialEq for PolyfaceSmoothType
impl Copy for PolyfaceSmoothType
impl Eq for PolyfaceSmoothType
impl StructuralPartialEq for PolyfaceSmoothType
Auto Trait Implementations§
impl Freeze for PolyfaceSmoothType
impl RefUnwindSafe for PolyfaceSmoothType
impl Send for PolyfaceSmoothType
impl Sync for PolyfaceSmoothType
impl Unpin for PolyfaceSmoothType
impl UnsafeUnpin for PolyfaceSmoothType
impl UnwindSafe for PolyfaceSmoothType
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.