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::*;
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct ArcFlags {
pub large_arc: bool,
pub sweep: bool,
}