1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
extern crate euclid;

pub mod math;
pub mod math_utils;
pub mod path_state;
pub mod events;
pub mod fixed;

pub use path_state::*;
pub use events::*;

/// Flag parameters for arcs as described by the SVG specification.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct ArcFlags {
    pub large_arc: bool,
    pub sweep: bool,
}