Struct three::animation::Track [] [src]

pub struct Track {
    pub binding: Binding,
    pub times: Vec<f32>,
    pub values: Values,
    pub interpolation: Interpolation,
}

A track of animation keyframes.

Fields

The object property this track updates.

The keyframe time values.

The keyframe values.

Specifies the interpolation strategy between keyframes.

Trait Implementations

impl Clone for Track
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Track
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Track

impl Sync for Track