Struct gltf_json::mesh::MorphTarget [−][src]
pub struct MorphTarget {
pub positions: Option<Index<Accessor>>,
pub normals: Option<Index<Accessor>>,
pub tangents: Option<Index<Accessor>>,
}A dictionary mapping attributes to their deviations in the Morph Target.
Fields
positions: Option<Index<Accessor>>
XYZ vertex position displacements of type [f32; 3].
normals: Option<Index<Accessor>>
XYZ vertex normal displacements of type [f32; 3].
tangents: Option<Index<Accessor>>
XYZ vertex tangent displacements of type [f32; 3].
Trait Implementations
impl Clone for MorphTarget[src]
impl Clone for MorphTargetfn clone(&self) -> MorphTarget[src]
fn clone(&self) -> MorphTargetReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for MorphTarget[src]
impl Debug for MorphTargetfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Validate for MorphTarget[src]
impl Validate for MorphTargetfn validate_minimally<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error), [src]
fn validate_minimally<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error), Validates only the invariants required for the library to function safely.
fn validate_completely<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error), [src]
fn validate_completely<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error), Validates the data against the glTF 2.0 specification. Read more
Auto Trait Implementations
impl Send for MorphTarget
impl Send for MorphTargetimpl Sync for MorphTarget
impl Sync for MorphTarget