pub struct FbxCreaseLayer {
pub kind: FbxCreaseKind,
pub mapping: Option<String>,
pub values: Vec<f64>,
}Available on crate features
fbx-reader or fbx-writer only.Expand description
A preserved FBX LayerElementEdgeCrease or LayerElementVertexCrease.
Fields§
§kind: FbxCreaseKindWhether this sharpens edges or control points.
mapping: Option<String>FBX mapping information type: ByEdge or ByVertice.
values: Vec<f64>Crease weights, normally in 0..=1.
Trait Implementations§
Source§impl Clone for FbxCreaseLayer
impl Clone for FbxCreaseLayer
Source§fn clone(&self) -> FbxCreaseLayer
fn clone(&self) -> FbxCreaseLayer
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 FbxCreaseLayer
impl Debug for FbxCreaseLayer
Source§impl PartialEq for FbxCreaseLayer
impl PartialEq for FbxCreaseLayer
impl StructuralPartialEq for FbxCreaseLayer
Auto Trait Implementations§
impl Freeze for FbxCreaseLayer
impl RefUnwindSafe for FbxCreaseLayer
impl Send for FbxCreaseLayer
impl Sync for FbxCreaseLayer
impl Unpin for FbxCreaseLayer
impl UnsafeUnpin for FbxCreaseLayer
impl UnwindSafe for FbxCreaseLayer
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