Trait flo_animation::VectorLayer [] [src]

pub trait VectorLayer: Send {
    fn add_element(&mut self, when: Duration, new_element: Vector);
fn active_brush(&self, when: Duration) -> Arc<Brush>; }

Represents a layer that contains vector elements

Required Methods

Adds a new vector element to this layer

The brush that will be active for the next element that's added to this layer

Implementors