flo_animation 0.1.0

Describes a FlowBetween animation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod ink;

pub use self::ink::*;

///
/// Stores the definition of a particular brush
/// 
#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
pub enum BrushDefinition {
    /// The simple brush is usually only used for testing
    Simple,

    /// An ink brush with a particular definition
    Ink(InkDefinition)
}