Trait gltf_utils::AnimationChannelIterators [] [src]

pub trait AnimationChannelIterators<'a> {
    fn inputs<S: Source>(&'a self, source: &'a S) -> Inputs<'a>;
fn outputs<S: Source>(&'a self, source: &'a S) -> Outputs<'a>; }

Extra methods for working with gltf::animation::Channel.

Required Methods

Visits the input samples of a channel.

Visits the output samples of a channel.

Implementors