Skip to main content

Placeable

Trait Placeable 

Source
pub trait Placeable: Animation {
    // Provided method
    fn at(self, offset_sec: f64) -> At<Self> { ... }
}
Expand description

Capability for animation definitions that have not been fixed in parent time coordinates.

This trait is used to constrain the anims to be inserted into AnimSequence. Only anims those are not placed can be inserted into it.

Provided Methods§

Source

fn at(self, offset_sec: f64) -> At<Self>

Place this definition at an offset in its parent’s local time coordinates.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Placeable for AnimSequence

Source§

impl Placeable for AnimStack

Source§

impl<A> Placeable for Paramed<A>
where A: Placeable + 'static,

Source§

impl<E> Placeable for E
where E: Eval + 'static, <E as Eval>::Output: AnyExtractCoreItem,