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]
fn clone(&self) -> MorphTarget[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for MorphTarget[src]
impl Validate for MorphTarget[src]
fn validate_minimally<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error), [src]
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]
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error),
Validates the data against the glTF 2.0 specification. Read more